ar
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

إظهار المزيد
781
المشتركون
-124 ساعات
+27 أيام
+1830 أيام
أرشيف المشاركات
What is the correct syntax for referring to an external script called "xxx.js"?
Anonymous voting

JavaScript Neat Tricks you should know
+5
JavaScript Neat Tricks you should know

Which CSS rule can be used to change the cursor when hovering over an element?
Anonymous voting

What will this code output? Difficulty: Average🤨
const obj1 = { name: 'Alice' };
const obj2 = { name: 'Alice' };

if (obj1 === obj2) {
    console.log("true");
} else {
    console.log("false");
}

What is the correct HTML for adding a background color?
Anonymous voting

You must know these handy JavaScript array methods.
+8
You must know these handy JavaScript array methods.

#memes
#memes

What is a correct syntax to output "Hello World" in Python?
Anonymous voting

Find the error in the code. The answer should be: 15 Difficulty: Average😐
function sumArray(arr) {
    let sum = 0;
    arr.forEach(function(num) {
        sum =+ num;
    });
    return sum;
}

let numbers = [1, 2, 3, 4, 5];
console.log(sumArray(numbers));

#js #tips
#js #tips

How do you create a class in JavaScript?
Anonymous voting

#memes
#memes

How can you create a flexbox container in CSS?
Anonymous voting

5 JavaScript tools for Optimizing SEO performance Libraries can enhance your website's SEO friendliness but content quality a
+5
5 JavaScript tools for Optimizing SEO performance Libraries can enhance your website's SEO friendliness but content quality and user experience are still crucial for ranking high in search results.

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

const result = add(5);  
console.log(result);

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

#javascript #tips
#javascript #tips

Which JavaScript method is used to remove the last element from an array?
Anonymous voting

#memes
#memes