Complete the code to declare an integer variable named age.
int [1];The variable name age is used to declare the integer variable as requested.
Complete the code to initialize the integer variable score with the value 100.
int score = [1];The variable score is initialized with the value 100 as requested.
Fix the error in the code by completing the variable declaration for a double named price.
double [1] = 9.99;
price.The variable name must be price to match the declaration and initialization.
Fill both blanks to declare and initialize a boolean variable named isActive with the value true.
[1] [2] = true;
int.The type is boolean and the variable name is isActive as requested.
Fill all three blanks to declare and initialize a String variable named name with the value "Alice".
[1] [2] = [3];
int.The type is String, the variable name is name, and the value is the string "Alice".