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
736
Subscribers
-224 hours
+87 days
+2530 days
Posts Archive
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

Find the error in the code. Difficulty: Easy๐Ÿ˜
function greet(name) {
  console.log("Hello, " + name);
}

greet();

#html #input #cheatsheet
#html #input #cheatsheet

Which of the following is NOT a JavaScript data type?
Anonymous voting

Which is the correct CSS syntax?
Anonymous voting

How do you define a function in JavaScript?
Anonymous voting

Which one is not a legal variable name in Python?
Anonymous voting

Find errors in the code. Difficulty: Average๐Ÿคจ
class Rectangle {
    constructor(width, height) {
        this.width = width;
        this.height = height;
    }

    getArea() {
        return width * height;
    }
}

const rect = new Rectangle(5, 10);
console.log("Area:", rect.getArea());

Where in an HTML document is the correct place to refer to an external style sheet?
Anonymous voting

#html #semantic #tips
#html #semantic #tips

Preparing for an interview? Check out all the key questions right here!

How can you open a link in a new tab/browser window?
Anonymous voting

What is a correct syntax to output "Hello World" in Python?
Anonymous voting

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

Find the error in the code. Difficulty: Average๐Ÿ˜
numbers = [1, 2, 3, 4, 5]

total = 0
for number in numbers:
    total += number

print("The total is: " + total)