Complete the code to declare an integer variable named age and initialize it with 25.
int [1] = 25;
The variable name age is used to declare and initialize the integer variable.
Complete the code to declare a floating-point variable named price and initialize it with 19.99.
float [1] = 19.99f;
The variable price is declared as a float and initialized with 19.99.
Fix the error in the code by completing the variable declaration for a character named grade initialized with 'A'.
char [1] = 'A';
The variable grade is declared as a char and initialized with the character 'A'.
Fill both blanks to declare a boolean variable named isOpen and initialize it with true.
bool [1] = [2];
The variable isOpen is declared as a bool and initialized with true.
Fill both blanks to declare a constant integer named MAX_USERS initialized with 100.
const int [1] = [2];
The constant integer MAX_USERS is declared and initialized with 100. The third blank is empty because no suffix is needed.