Program Setup
Variables
Data Types
Operations
miscellaneous
100

Name of program that opens text editor.

What is nano?

100

The meaning of the word variable.

What is able to change?

100

The set of values for the float data type. The set of values for the char data type. The set of values for the int data type. In that order.

What are numbers with a decimal point, single characters enclosed in single quotes, and whole numbers?

100

The resulting value and data type of the following:

3 + 4 * 5

What is 23 and int?
100

The most recent actor to play Batman in a live action movie.

Who is Robert Pattinson?
200

Program that lets you interact with the computer via written commands.

What is the terminal?
200
This is the information you must tell the computer about a variable you're declaring. 

What is the variable's data type and name?

200

The operation that you can do with both int and char data types, but not the float data type.

What is the remainder operation %?

200

The result of the following:

33 % 8 * 2.0

What is 2.0 and float?
200

Name of Bart Simpson's sister

Who is Lisa Simpson?

300

Special program whose job is to translate instructions written in a programming language into binary.

What is the compiler?

300

The operator used to assign a value to a variable. 

What is the assignment operator (=)?

300

The resulting datatype when an operation is done between two values of the same type. 

What is that same type?

300

The resulting value and data type of the following:

1 + (15 - 2) / 3 

What is 15 and int?

300

The band whose members are:
John Lennon, Paul McCartney, George Harrison, and Ringo Starr

Who are the beatles?
400

Name of program that translates C instructions into binary.

What is gcc?

400

This is what happens when you assign a value to a variable whose datatype does not match. Like if you assigned a char value to a float type variable. 

What is the value gets converted into the variable's data type?

400

This is how you do math with characters. Like how do you evaluate 'A' + '!'.

What is look up the character's integer equivalent in the ASCII chart?

400

The resulting value and datatype:

2.0 * 3 % 5

What is ERROR?

400

Name of cartoon whose plot is three friends who share similar names launch schemes to acquire jawbreaker candies. 

What is Ed, Edd, and Eddy?

500

When compiling a C file, this is how you name the binary file produced.

What is -o <name>?

500

For the following program, the number of variables declared, the final value assigned to each variable declared:

int x = 5;

int y;

y = x + x;

x = x + 2;

x = x + 2;

What is 2, x = 9, y = 10?

500

The resulting datatype when an operation is done between two different data types. For example, what is the result of an operation between a float value and a char value.

What is the broader data type?

500

The resulting value and datatype:

18.0 / 4 * (3 + 2) * 6

What is 135?

500

The color of Mr. Lopez lanyard

What is yellow?

M
e
n
u