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 default value of the position property in CSS?
What will this code output? Spot the bug.
Difficulty: Hard😤
for (var i = 0; i < 5; i++) {
setTimeout(function() {
console.log(i);
}, 1000);
}Which method can be used to replace parts of a string in Python?
The task is to write a palindrome function.
Difficulty: Hard😤
isPalindrome("radar"); // true
isPalindrome("hello"); // false📒 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?
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 HTML element for playing audio files?
