ar
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

إظهار المزيد
780
المشتركون
-124 ساعات
+27 أيام
+1830 أيام
أرشيف المشاركات
#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

Find the error in the code. Difficulty: Average🤨
def divide_numbers(a, b):
    return a / b

result = divide_numbers(10, 0) 
print(f"The result is: {result}")

HTML Tip💡 You can add dark mode to your website with just one line of code. #html #tips
HTML Tip💡 You can add dark mode to your website with just one line of code. #html #tips

How do you make the text bold in CSS?
Anonymous voting

#css #timing #tips

What is the correct HTML for making a checkbox?
Anonymous voting

How do you insert comments in Python code?
Anonymous voting