Program :
r = 7
pi=3.142
area = pi*r*r
print [area]
The variable are ______ in this program.
a) r,pi b) area c) both a and b d) none of these
Answers
Answered by
1
Answer:
Answer is c
Explanation:
r is variable used to store a int value.
pi is a variable to store float value
and area is a variable used to store the area of a circle.
Similar questions