145k views
5 votes
Q8:What is the correct way to declare an integer named age? ----- , ---- , ----- , ----- . hint= use this (variable , integer ) .

User Zikes
by
5.2k points

1 Answer

3 votes

Answer:

age=int(14)

Step-by-step explanation:

When declaring an integer variable you use int which stands for integer. You place the number (age) inside the parentheses of int.

User Rix
by
5.9k points