This basic element of a program specifies a computation to be performed.
What is an Expression?
In C++ this is an object that has a name.
What is a Variable?
X = 7;
What is assign?
Boolean
What is 1 byte?
This type of variable can only have two possible values: True (1), and False (0).
What is a boolean variable?
This basic element of a program is the smallest independent unit in the C++ programming language.
What is a Statement?
This is a piece of memory that can be used to store values.
What is an Object?
first = 127.16;
What is assign?
Character
This C++ keyword is used to declare a boolean variable.
What is bool?
This basic element of a program is a collection of statements that execute sequentially.
What is a Function?
This term is used to describe when a piece of memory from RAM will be set aside.
What is Instantiation?
int bigNumber;
What is Definition?
int
What is 2 bytes?
When boolean variables are used within the context of an if statement the expression is called this.
What is a conditional expression?
This type of statement tells the C++ compiler that a variable holds a value.
What is a Declaration Statement?
A term used to describe when you both define a variable AND give it an initial value.
What is initialization?
string firstName = "Bob";
What is initialization?
long
What is 4 bytes?
When x = 0, does this return a value of True or False?
if (x == 0)
What is true?
This is a collection of precompiled code (e.g. functions).
What is a Library?
This describes a variable that has not been given a known value.
What is an Uninitialized Variable?
int x;
cout << x;
What is Uninitialized?
Float
What is 4 bytes?
If y = True, what does this statement return?
x = False;
y = x;
if (y == true)
What is false?