Which one of these is the correct way to display the variable var, containing number 1 as value, to the console?(1 point)

Responses:

a.) print(var)
b.) print(‘var’)
c.) print(‘1’)
d.) print(1)

1 answer

a.) print(var)