Guess the Language
Pseudocode
Vocab
Syntax
Number Systems
100

width = 20
height = 5 * 9

print(“Area: ” + width * height)

x = 12

print(x)

What is Python?

100

What is printed?

x = “potahto”

print(x)

What is potahto?

100

Translates source code one line at a time

What is Interpreter?

100

What does the following symbol mean: >

What is greater than?

100

3 in binary

What is 11?

200

const name = "Eva”;

let age = 25;

age = 26;

console.log(`Hello, my name is ${name} and I am ${age} years old.`);

What is JavaScript?

200

What is printed?

male = “smelly”

print(“Levi is ” + male)

What is Levi is smelly?

200

Translates source code all at once before a program loads

What is compiler?

200

What does the || operator mean?

What is OR?

200

5 in hexadecimal

What is 5?

300

#include <stdio.h>

int main() {
    int a, b, sum;
    printf("Enter two numbers: ");
    scanf("%d %d", &a, &b);
    sum = a + b;
    printf("Sum = %d\n", sum);
    return 0;
}

What is C?

300

What is printed?

x = 12

y = 3

print(y+x*y)

What is 39?

300

Error that occurs while the program is running

What is run-time error?

300

What does the ++ operator do to a variable?

What is adds one?

300

10 in binary

What is 1010?

400

#include <iostream>

int main() {

    std::cout << "Hello, World!" << std::endl;

    return 0;

}


What is C++?

400

What is printed?

x = 1

y = 2

z = 3

while y > -1: y -= 2

print(y+x+z)

What is 2?

400

The sentence structure in a programming language

What is syntax?

400
What does the ** operator do in Python?

What is exponent/power?

400

20 in hexadecimal

What is 14?

500

INSERT INTO Employees (ID, Name, Age, Department)
VALUES (1, 'John Doe', 30, 'HR');

What is SQL?

500

WHO ARE WE VOTING FOR TO BE REPORTER?

Who is Eva?

500

Special word that can not be used as a user-defined name

What is reserved word?

500

What is this operator called, and what does it do?: %

What is Modulus? (What does it do?)

500

12 in hexadecimal

What is C?