Programming Quiz Channel – Telegram
Programming Quiz Channel
612 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
What is the correct HTML for making a checkbox?
Anonymous Quiz
5%
<check>
15%
<input type="check">
8%
<checkbox>
71%
<input type="checkbox">
HTML Tip💡

You can add dark mode to your website with just one line of code.

#html #tips
👍41🤯1
Find the error in the code.
Difficulty: Average🤨

def divide_numbers(a, b):
return a / b

result = divide_numbers(10, 0)
print(f"The result is: {result}")
How to write an IF statement in JavaScript?
Anonymous Quiz
9%
if i = 5
13%
if i == 5
75%
if (i == 5)
4%
if i == 5:
👍1
Find the error in the code.
Difficulty: Hard😤

function processArray(arr) {
let result = [];

arr.forEach(item => {
if (item != '') {
result.push(item);
} else if (typeof item === 'number') {
result.push(item * 2);
}
});

return result;
}

let data = [1, '', 2, 3, '', 5, null, undefined, 'hello'];

console.log(processArray(data));
What is the correct file extension for Python files?
Anonymous Quiz
5%
.python
11%
.pyt
75%
.py
9%
.pt
Best colors for brands

#colors
🔥32👍1
Which of the following elements is considered a global HTML structural element?
Anonymous Quiz
15%
<p>
62%
<header>
13%
<h1>
10%
<strong>
How do you write "Hello World" in an alert box in JavaScript?
Anonymous Quiz
13%
alertBox("Hello, world!")
15%
console("Hello, world!")
21%
print("Hello, world!")
51%
alert("Hello, world!")
How do you make each word in a text start with a capital letter in CSS?
Anonymous Quiz
39%
text-transform: capitalize;
17%
text: capitalize;
30%
text-style: capitalize;
13%
transform: capitalize;
Find the error in the code.
Difficulty: Easy😁

number = 5
text = "Quantity: " + number

print(text)