Coding Languages
Coding Languages 2
Coding Terms
Debug
Random
100

What language is used mainly for making web pages?

HTML

100

What language, known for its use in web development alongside HTML and CSS, was developed by Netscape in the mid-1990s?

JavaScript

100

What term refers to a set of instructions that a computer can execute?

Program

100

Debug (Python):

print("Hello World)

Missing a closing quotation mark

100

What U.S. state is known as the "Sunshine State"?

Florida

200

What language is used to style websites and control things like fonts and colors?

CSS

200

What visual programming language is widely used for teaching programming to beginners and is known for its colorful blocks that represent code?

Scratch

200

What type of loop repeats a block of code as long as a specified condition remains true?

While loop

200

Debug (JavaScript):

let num = 10;

if (num == 10) {

  console.log("Number is ten")

}

Missing a semicolon at the end of the console.log commmand

200

What is the only country in the world that is also a continent?

Australia

300

What language, designed by Bjarne Stroustrup, was an extension of C, adding things like object-oriented features?

C++

300

What programming language, the foundation for many modern programming languages, was created by Dennis Ritchie at Bell Labs in the 1970s? (Hint: A, B, ...)

C

300

What term refers to the part of a program where the user interacts with the application?

User Interface (UI)
300

Debug (C++):

#include <iostream>

int main() {

  int x = 5;

  if x == 5 {

    std::cout << "x is 5" << std::endl;

  }

}

Missing parentheses around "x==5" 

300

What is the most abundant gas on Earth?

Nitrogen gas

400

What programming language was named after a comedy group?

Python

400

What programming language, developed by Apple, is commonly used for iOS and macOS application development?

Swift

400

What term refers to a function that calls itself to solve smaller instances of a problem, often used in algorithms like sorting or searching?

Recursion

400

Debug (Python):

def divide_numbers(a, b):

    if b = 0:

        return "Cannot divide by zero"

    return a / b

print(divide_numbers(10, 2))

print(divide_numbers(10, 0))

Should be "==" to compare b to 0

400

Who is the hero in Greek mythology who completed twelve labors, including slaying the Nemean Lion?

Hercules
500

What language, developed by James Gosling at Sun Microsystems, is known for its portability and slogan “Write once, run anywhere”?

Java

500

What programming language, considered low-level and often used for system-level programming, uses syntax like mov, add, and jmp?

Assembly

500

What concept in object-oriented programming refers to the ability of different classes to be treated as instances of the same class through inheritance?

Polymorphism
500

Debug (Python):

def calculate_area(radius):

    area = 3.14 * radius * radius

    return area

radius = 5

calculate_area(radius)

print("Area:", area)

Area is a local variable in the "calculate_area" function and therefore cannot be referenced

500

What is the phobia of height called?

Acrophobia

M
e
n
u