Programming Quiz Channel
720 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;
47%
cursor: pointer;
13%
pointer: hover;
JavaScript Neat Tricks you should know
โค7๐Ÿ”ฅ1
What is the correct syntax for referring to an external script called "xxx.js"?
Anonymous Quiz
69%
<script src="xxx.js"></script>
19%
<script src="xxx.js">
7%
<script src=""></script>
5%
<script name="xxx.js">
Who is making the Web standards?
Anonymous Quiz
32%
Google
9%
Mozilla
49%
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