2
Q:
A) char | B) double |
C) int | D) float |
Answer: A) char
Explanation:
Explanation:
Data types are used for declaration of variables in computer programming languages. These determine the type and size of data associated with variables.
Data types examples - int, char, float, etc...
char datatype is the least storage data type with 1 byte.
int with 2 or 4 bytes.
float with 4 bytes
double with 8 bytes.