Explain about datatypes .
Answers
Explanation:
In computer science and computer programming, a data type or simply type is an attribute of data which tells the compiler or interpreter how the programmer intends to use the data. Most programming languages support basic data types of integer numbers, floating-point numbers, characters and Booleans
Answer:
Data Types:-
Data type specifies the size and type of values that can be stored in an identifier.
_________________
Types of Data types:-
Primitive Data Types
A primitive data type specifies the size and type of variable values, and it has no additional methods.
Example:-int,double,long......
Non-Primitive Data Types:-
Non-primitive data types are called reference types because they refer to objects.
These types of dat types are secondry hence derived from other data types...
Example:-Array,class......
_________________________24112002