ch
Feedback
Programming Quiz Channel

Programming Quiz Channel

前往频道在 Telegram

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

显示更多
780
订阅者
-124 小时
+27
+1830
帖子存档
JavaScript Task Check that this string consists of numbers only. Difficulty: Easy😁
string = "1234567890"

What is the correct way to create a function in Python?
Anonymous voting

What is the default value of the position property in CSS?
Anonymous voting

#memes
#memes

What does HTML stand for?
Anonymous voting

What will this code output? Spot the bug. Difficulty: Hard😤
for (var i = 0; i < 5; i++) {
    setTimeout(function() {
        console.log(i);
    }, 1000);
}

What does the "this" keyword refer to in JavaScript?
Anonymous voting

Which method can be used to replace parts of a string in Python?
Anonymous voting

#css #tips
#css #tips

The task is to write a palindrome function. Difficulty: Hard😤
isPalindrome("radar"); // true
isPalindrome("hello"); // false

What does the "display: flex" property do in CSS?
Anonymous voting

📒 FREE Book React.js Design Patterns: Learn how to build scalable React appswith ease (2023) By: Anthony Onyekachukwu Okonta #book

Which of the following JavaScript features are used for handling asynchronous operations?
Anonymous voting

Two ways to create responsive input fields in CSS! #css #input #tips

How many types of positioning are there in CSS?
Anonymous voting

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.

What is the correct way to write a JavaScript array?
Anonymous voting

#memes
#memes

What is the correct HTML element for playing audio files?
Anonymous voting