en
Feedback
Programming Quiz Channel

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 more
781
Subscribers
-124 hours
+27 days
+1830 days
Posts Archive
Starvation in operating system means:
Anonymous voting

Which SQL clause sorts results?
Anonymous voting

Which data structure uses LIFO behavior ?
Anonymous voting

In Java, what is the default value for uninitialized int variable inside a class?
Anonymous voting

Which HTTP status implies retry later?
Anonymous voting

Which OS algorithm may cause starvation?
Anonymous voting

In Python, what is the result of len("abc" * 3)?
Anonymous voting

Which SQL keyword removes duplicate rows?
Anonymous voting

What is the time complexity of binary search on a sorted array?
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);
}

Which CSS property controls the text size?
Anonymous voting

#memes
#memes

3 rounding methods in JavaScript
3 rounding methods in JavaScript

Find the error in the code. Difficulty: Hard😤
function processArray(arr) {
    let result = [];
    
    arr.forEach(item => {
        if (item != '') { 
            result.push(item);
        } else if (typeof item === 'number') { 
            result.push(item * 2);
        }
    });

    return result;
}

let data = [1, '', 2, 3, '', 5, null, undefined, 'hello'];

console.log(processArray(data));

Which HTML tag is used to define an internal style sheet?
Anonymous voting

Event delegation in Javascript!! Commonly used for handling clicks on dynamically added elements, managing events for a large
Event delegation in Javascript!! Commonly used for handling clicks on dynamically added elements, managing events for a large number of similar elements efficiently, and simplifying event management in complex user interfaces.

How do you add a background color for all

elements?

Anonymous voting

Find the error in the code. Difficulty: Easy😁
number = 5
text = "Quantity: " + number

print(text)

#memes
#memes

Who is making the Web standards?
Anonymous voting