width = 20
height = 5 * 9
print(“Area: ” + width * height)
x = 12
print(x)
What is Python?
What is printed?
x = “potahto”
print(x)What is potahto?
Translates source code one line at a time
What is Interpreter?
What does the following symbol mean: >
What is greater than?
3 in binary
What is 11?
const name = "Eva”;
let age = 25;
age = 26;
console.log(`Hello, my name is ${name} and I am ${age} years old.`);
What is JavaScript?
What is printed?
male = “smelly”
print(“Levi is ” + male)
What is Levi is smelly?
Translates source code all at once before a program loads
What is compiler?
What does the || operator mean?
What is OR?
5 in hexadecimal
What is 5?
#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?
What is printed?
x = 12
y = 3
print(y+x*y)
What is 39?
Error that occurs while the program is running
What is run-time error?
What does the ++ operator do to a variable?
What is adds one?
10 in binary
What is 1010?
#include <iostream>
int main() {
std::cout << "Hello, World!" << std::endl;
return 0;
}
What is C++?
What is printed?
x = 1
y = 2
z = 3while y > -1: y -= 2
print(y+x+z)
What is 2?
The sentence structure in a programming language
What is syntax?
What is exponent/power?
20 in hexadecimal
What is 14?
INSERT INTO Employees (ID, Name, Age, Department)
VALUES (1, 'John Doe', 30, 'HR');
What is SQL?
WHO ARE WE VOTING FOR TO BE REPORTER?
Who is Eva?
Special word that can not be used as a user-defined name
What is reserved word?
What is this operator called, and what does it do?: %
What is Modulus? (What does it do?)
12 in hexadecimal
What is C?