Complete the code to declare an integer variable named count with value 10.
int count = [1];The variable count is declared as an integer, so the value must be a whole number without quotes.
Complete the code to declare a double variable named price with value 9.99.
double price = [1];The variable price is a double, so the value must be a number with a decimal point without quotes.
Fix the error in the code by completing the declaration of a String variable named greeting with value Hello.
String greeting = [1];Strings must be enclosed in double quotes in Dart to be valid text values.
Fill both blanks to declare a boolean variable named isActive set to true.
bool isActive = [1];Boolean variables hold true or false without quotes.
Fill all three blanks to declare variables: an int age 25, a double height 1.75, and a String name "Alice".
int age = [1]; double height = [2]; String name = [3];
Each variable must have the correct type and value format: int without quotes, double with decimal without quotes, and String with quotes.