es
Feedback
Programming Quiz Channel

Programming Quiz Channel

Ir al canal en 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

Mostrar más
736
Suscriptores
-224 horas
+87 días
+2530 días
Archivo de publicaciones
How can you ensure that an element always stays at the bottom of its parent container?
Anonymous voting

Which tag is used to define an HTML table header?
Anonymous voting

What does the push() method do for an array in JavaScript?
Anonymous voting

#css #border #cheatsheet
#css #border #cheatsheet

What is the correct way to create a variable with the value of 5 in Python?
Anonymous voting

Find the error in the code. The answer should be: 0, 1 Difficulty: Average😐
const createCounter = () => {
  let count = 0;
  return () => {
    console.log(count++);
  };
};

const counter1 = createCounter();
const counter2 = createCounter();

counter1(); 
counter2();

#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