A line of C++ code that ends with a semicolon is one of these.
STATEMENT
This kind of data type deals with strings of characters
STRINGS
Subtraction, Division, Exponent, Multiplication--this comes first in the order of operations
EXPONENT
A string is a group of these
CHARACTERS
C++ is a ______ oriented language
OBJECT
When you give a variable a name and a data type, you are doing this with a variable
DECLARING
This data type deals with integers
INT
%
MODULUS
One property of a string is this--but for this kind of string, a ruler won't work
LENGTH
The user can change the data type of a variable through a process called
TYPECASTING
#include allows us to add these
Libraries
This is the floating point type with the most digits of precision
DOUBLE
pow(5, 2) = ?
25
Initialize a string
String s = "Hello, world!";
This condition occurs when a variable's value is too small for the data type
UNDERFLOW
When you give a new variable a value, you are doing this
INITIALIZING
A data type that only stores positive values
UNSIGNED
3 * 4 / 2 - 2 * 4 =
-2
You are doing this when creating an object
Instantiation
Adding one to a variable
INCREMENTING
This operator compares two items to see if they are equal
==
What data type stores a single letter / number?
CHAR
In the statement:
int dog = 2;
What is "dog" considered?
Variable
The output of this statement: cout << "2 + 2"; is
2 + 2
Properly typecast the variable x to type double and store the value in the variable A
A = (double) (x);