ch
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
帖子存档
Two ways to create responsive input fields in CSS! #css #input #tips

How many types of positioning are there in CSS?
Anonymous voting

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 way to write a JavaScript array?
Anonymous voting

#memes
#memes

What is the correct HTML element for playing audio files?
Anonymous voting

#js #function #tips
#js #function #tips

What is the correct way to create a function in Python?
Anonymous voting

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

print(text)

How do you make each word in a text start with a capital letter in CSS?
Anonymous voting

How do you write "Hello World" in an alert box in JavaScript?
Anonymous voting

Which of the following elements is considered a global HTML structural element?
Anonymous voting

Best colors for brands #colors
+4
Best colors for brands #colors

What is the correct file extension for Python files?
Anonymous voting

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

How do you display hyperlinks without an underline?
Anonymous voting

An
Anonymous voting

#html #tips

How to write an IF statement in JavaScript?
Anonymous voting

How many hours do you spend coding each week?
Anonymous voting