Computer Applications
What do you mean by non-primitive data type? Give examples.
Values & Data Types Java
97 Likes
Answer
A non-primitive data type is one that is derived from Primitive data types. A number of primitive data types are used together to represent a non-primitive data type. Examples of non-primitive data types in Java are Class and Array.
Answered By
60 Likes
Related Questions
Explain the term type conversion. How is implicit conversion different from explicit conversion?
In what way is static declaration different from dynamic declaration?
Predict the return data type of the following:
int p; double q; r = p+q; System.out.println(r);
Predict the return data type of the following:
float m; p = m/3*(Math.pow(4,3)); System.out.println(p);