Computer Science, asked by vijayant2477, 10 months ago

Which data type will used to represent the following data values and why? a number of month in a year

Answers

Answered by HardikJain23
68

Answer:

a) The int data type will be used to represent 'Number of months in a year' as it will be an integer i.e. 12.

b) The boolean data type will be used to represent 'Resident of Delhi or not' as a person will be either a resident of Delhi or not a resident of Delhi. Therefore, the values True or False will be sufficient to represent the values.

c) The integer data type will be used to represent 'Mobile number' as it will be a ten-digit integer only.

d) The float data type will be used to represent 'Pocket money' as it can be in decimal. e.g Rs. 250.50 i.e 250 rupees and 50 paise.

e) The float data type will be used to represent 'Volume of a sphere'.

The formula for the volume of a sphere:

Volume of sphere, V=43πr3

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.

f) The float data type will be used to represent 'Perimeter of a square'.

The perimeter of a square:

Perimeter = 4 × side length

If the side length is a decimal number, the result may come out to be a decimal number which can be easily represented by float data type.

Note:- If the side length is a whole number, the perimeter will always be an integer, however, we should be open to the possibility that the side length can be in decimal as well.

g) The string data type will be used to represent 'Name of the student'.

h)The string data type will be used to represent 'Address of the student'. However, if we have to store the address in a more structured format, we can use dictionary data type as well. e.g. Address = { 'Line1': ‘Address line 1', 'Line2':'Address Line2', 'Locality':'Locality Name', 'City':'City Name', 'Pincode':110001, 'Country':'India'}

Hope this Answer help you.

Answered by ranisoni576574
9

Answer:

mark me as brainlist please

Explanation:

thanks

Attachments:
Similar questions