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
Показати більше736
Підписники
-224 години
+87 днів
+2530 день
Архів дописів
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?
Вже доступно! Дослідження Telegram за 2025 — головні інсайти року 
