CBSE Class 10 Computer Applications Question 18 of 31

Python Revision — Question 6

Back to all questions
6
Question

Question 6

What are data types ? How are they important ?

Answer

Data types are used to identify the type of data a memory location can hold and the associated operations of handling it.

The data that we deal with in our programs can be of many types like character, integer, real number, string, boolean, etc. hence programming languages including Python provide ways and facilities to handle all these different types of data through data types. The data types define the capabilities to handle a specific type of data such as memory space it allocates to hold a certain type of data and the range of values supported for a given data type, etc.