Name of program that opens text editor.
What is nano?
The meaning of the word variable.
What is able to change?
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?
The resulting value and data type of the following:
3 + 4 * 5
The most recent actor to play Batman in a live action movie.
Program that lets you interact with the computer via written commands.
What is the variable's data type and name?
The operation that you can do with both int and char data types, but not the float data type.
What is the remainder operation %?
The result of the following:
33 % 8 * 2.0
Name of Bart Simpson's sister
Who is Lisa Simpson?
Special program whose job is to translate instructions written in a programming language into binary.
What is the compiler?
The operator used to assign a value to a variable.
What is the assignment operator (=)?
The resulting datatype when an operation is done between two values of the same type.
What is that same type?
The resulting value and data type of the following:
1 + (15 - 2) / 3
What is 15 and int?
The band whose members are:
John Lennon, Paul McCartney, George Harrison, and Ringo Starr
Name of program that translates C instructions into binary.
What is gcc?
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?
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?
The resulting value and datatype:
2.0 * 3 % 5
What is ERROR?
Name of cartoon whose plot is three friends who share similar names launch schemes to acquire jawbreaker candies.
What is Ed, Edd, and Eddy?
When compiling a C file, this is how you name the binary file produced.
What is -o <name>?
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?
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?
The resulting value and datatype:
18.0 / 4 * (3 + 2) * 6
What is 135?
The color of Mr. Lopez lanyard
What is yellow?