Programming Quiz Channel
724 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
Channel photo updated
Which of the following keywords is not used to declare a variable in JavaScript?
Anonymous Quiz
24%
var
12%
let
50%
int
14%
const
Find the error in the code.
Difficulty: Easy🙂

let user = {
name: "John"
age: 30,
isAdmin: true
};

console.log("User's name is: " + user.name);
Which HTML tag is used to define an unordered list?
Anonymous Quiz
16%
<ol>
10%
<li>
66%
<ul>
9%
<dl>
What will this code output?
Difficulty: Average😐

let x = 0.1 + 0.2;
let y = 0.3;

if (x === y) {
console.log("Values are equal");
} else {
console.log("Values are not equal");
}
Can negative values be allowed in padding property?
Anonymous Quiz
43%
Yes
17%
Depends
36%
No
4%
None of the above