ch
Feedback
Programming Quiz Channel

Programming Quiz Channel

前往频道在 Telegram

Programming quizzes and knowledge tests Short quizzes on programming, logic and computer science. Test and improve your coding knowledge. Join 👉 https://rebrand.ly/bigdatachannels DMCA: @disclosure_bds Contact: @mldatascientist

显示更多
780
订阅者
-124 小时
+27
+1830
帖子存档
#css #selector #tips
#css #selector #tips

What programming language are you interested in for your next test?
Anonymous voting

What is the purpose of the data-* attribute in HTML?
Anonymous voting

What will this code output to the console? Difficulty: Easy 😁
function add(a, b) {
  return a * b;
}

const result = add(5,'2');  
console.log(result);

How can you select the element with the id 'example' in CSS?
Anonymous voting

What is true about a variable declared with "const" in JavaScript?
Anonymous voting

#html #entities #tips
#html #entities #tips

What does the flex-shrink property do in CSS Flexbox?
Anonymous voting

Which HTML tag is used to define an unordered list?
Anonymous voting

What will this code output? Spot the bug. Difficulty: Hard😤
for (var i = 0; i < 5; i++) {
    setTimeout(function() {
        console.log(i);
    }, 1000);
}

Which HTML5 element represents a self-contained piece of content that could be distributed independently?
Anonymous voting

Which of the following is the correct way to center a block element horizontally using margins?
Anonymous voting

#css #units #tips
#css #units #tips

What does the "DOM" stand for in JavaScript?
Anonymous voting

JavaScript Task Given an array of numbers. Increase each number in the array by 10 percent. Difficulty: Easy😁
let numbers = [100, 200, 300, 400, 500];

Which character is used to indicate an end tag in HTML?
Anonymous voting

What is the correct HTML for referring to an external style sheet?
Anonymous voting

#css #cursor #tips
#css #cursor #tips

Find error in the code. Difficulty: Easy😁
function addNumbers(a, b) {
    return a + b;
}

let result = addNumbers(5, '10');

console.log('Результат: ' + result);

Which statement is used to execute a function in JavaScript?
Anonymous voting