ru
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

Больше
736
Подписчики
-224 часа
+87 дней
+2530 день
Архив постов
Which property controls the stacking order of elements?
Anonymous voting

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));

The developer gets angry at the tester for finding yet another bug.🤣

Inline elements in HTML are typically displayed without starting a new line.
Anonymous voting

📝 CSS display: contents How can display: contents improve layout flexibility? This property makes elements "transparent" in
📝 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?
Anonymous voting

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