Programming Quiz Channel
Open in 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
Show more736
Subscribers
-224 hours
+87 days
+2530 days
Posts Archive
How can the code be modified to handle both successful and failed promises?
Difficulty: Impossibleπ
const promises = [
Promise.resolve(1),
Promise.reject(new Error('Error'))
];
Promise.all(promises)
.then(results => console.log(results))
.catch(error => console.error(error));Inline elements in HTML are typically displayed without starting a new line.
π CSS display: contents
How can display: contents improve layout flexibility? This property makes elements "transparent" in the DOM, merging their children with the parent container without altering visual display. It helps eliminate unnecessary wrappers and simplifies styling, but be aware of accessibility issues with screen readers.
How can you check if a value is NOT equal to 5 in JavaScript?
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?
Available now! Telegram Research 2025 β the year's key insights 
