Programming Quiz Channel – Telegram
Programming Quiz Channel
611 subscribers
81 photos
4 videos
1 file
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
Download Telegram
You must know these handy JavaScript array methods.
🔥3
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");
}
Which CSS rule can be used to change the cursor when hovering over an element?
Anonymous Quiz
19%
hover-cursor: hand;
21%
hover: cursor;
46%
cursor: pointer;
14%
pointer: hover;
JavaScript Neat Tricks you should know
7🔥1
What is the correct syntax for referring to an external noscript called "xxx.js"?
Anonymous Quiz
70%
<noscript src="xxx.js"></noscript>
18%
<noscript src="xxx.js">
7%
<noscript src=""></noscript>
5%
<noscript name="xxx.js">
Who is making the Web standards?
Anonymous Quiz
34%
Google
8%
Mozilla
48%
The World Wide Web Consortium
10%
Microsoft
🤣4👍2😁2
Find the error in the code.
Difficulty: Easy😁

number = 5
text = "Quantity: " + number

print(text)
🔥3🤔3👍2