Robotics & Artificial Intelligence

Identify suitable data type(s). One has been done for you.

ScenarioData Type
Storing area of squareint, float
Storing age of a person 
Storing age, height and weight in a single data type 
Storing age, height and weight in a single data type (It should not be changed, once stored) 
Storing age, height and weight in a single data type (index name should reflect that the data corresponds to age, height, and weight) 

Getting Started

3 Likes

Answer

ScenarioData Type
Storing area of squareint, float
Storing age of a personint
Storing age, height and weight in a single data typelist
Storing age, height and weight in a single data type (It should not be changed, once stored)tuple
Storing age, height and weight in a single data type (index name should reflect that the data corresponds to age, height, and weight)dictionary

Answered By

1 Like


Related Questions