Complete the code to declare an integer variable named age using var.
var age [1]The var keyword declares a variable. Here, age is declared as an int type.
Complete the code to declare a string variable named name using var.
var name [1]int or bool instead of string.The variable name should hold text, so its type is string.
Fix the error in the variable declaration to declare a boolean variable named isActive.
var isActive [1]string or int instead of bool.The variable isActive should be a boolean, so its type is bool.
Fill both blanks to declare a float variable named price and assign it the value 9.99.
var price [1] = [2]
int type for decimal numbers.The variable price is declared as float64 to hold decimal numbers and assigned the value 9.99.
Fill all three blanks to declare a variable named count of type int and assign it the value 10.
var [1] [2] = [3]
The variable count is declared as an int and assigned the value 10.