Advertisements
Advertisements
Question
Which data type will be used to represent the following data values and why?
Volume of a sphere
Solution
The float data type will be used to represent the 'Volume of a sphere'.
The formula for the volume of a sphere:
Volume of sphere, `"V" = 4/3π"r"^3`
Even if 'r' is a whole number, the value of volume can be a fraction which can be represented in a decimal form easily by float data type.
APPEARS IN
RELATED QUESTIONS
Which data type will be used to represent the following data values and why?
Number of months in a year
Which data type will be used to represent the following data values and why?
A resident of Delhi or not
Which data type will be used to represent the following data values and why?
Mobile number
Which data type will be used to represent the following data values and why?
Pocket money
Which data type will be used to represent the following data values and why?
Perimeter of a square
Which data type will be used to represent the following data values and why?
Name of the student
Give the output of the following when num1 = 4, num2 = 3, num3 = 2.
num1 += num2 + num3
print (num1)
Give the output of the following when num1 = 4, num2 = 3, num3 = 2.
num1 = num1 ** (num2 + num3)
print (num1)
Give the output of the following when num1 = 4, num2 = 3, num3 = 2.
num1 = '5' + '5'
print(num1)
Give the output of the following when num1 = 4, num2 = 3, num3 = 2.
print(4.00 / (2.0 + 2.0))