Programming Quiz Channel – Telegram
Programming Quiz Channel
613 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
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)
What is the correct HTML element for playing audio files?
Anonymous Quiz
8%
<sound>
69%
<audio>
19%
<mp3>
5%
<video>
👍2🔥1👏1
Python Task
Write a program that asks the user to enter a number, then displays whether the number is even or odd.
Difficulty: Easy😁

Example of the program's output:
Enter a number: 7
The number 7 is odd.

Enter a number: 10
The number 10 is even.
👍2
How many types of positioning are there in CSS?
Anonymous Quiz
19%
3
26%
4
43%
5
13%
6
👏1
This media is not supported in your browser
VIEW IN TELEGRAM
Two ways to create responsive input fields in CSS!

#css #input #tips
2👍1🙏1
Which of the following JavaScript features are used for handling asynchronous operations?
Anonymous Quiz
43%
Promises and Callbacks
14%
SetTimeout and Event Listeners
24%
Var and Let
19%
Functions and Loops
React_js_Design_Patterns_Learn_how_to_build_scalable_React_apps.pdf
3.1 MB
📒 FREE Book

React.js Design Patterns: Learn how to build scalable React appswith ease
(2023)

By:
Anthony Onyekachukwu Okonta

#book
🔥21👍1
The task is to write a palindrome function.
Difficulty: Hard😤

isPalindrome("radar"); // true
isPalindrome("hello"); // false
4👍1🔥1
Which method can be used to replace parts of a string in Python?
Anonymous Quiz
60%
replace()
19%
substitute()
15%
switch()
6%
modify()