Computer Applications
Differentiate between built-in data types and user defined data types.
Java Classes
38 Likes
Answer
Built-In Data Types | User Defined Data Types |
---|---|
Built-In Data Types are fundamental data types defined by Java language specification. | User Defined Data Types are created by the user. |
Sizes of Built-In Data Types are fixed. | Sizes of User Defined data types depend upon their constituent members. |
Built-In Data Types are available in all parts of a Java program. | Availability of User Defined data types depends upon their scope. |
Built-In Data Types are independent components. | User Defined data types are composed of Built-In Data Types. |
Answered By
20 Likes
Related Questions
What is meant by private visibility of a method?
'Object is an instance of a class.' Explain this statement.
Which of the following declarations are illegal and why?
(a) class abc{…}
(b) public class NumberOfDaysWorked{…}
(c) private int x;
(d) private class abc{…}
(e) default key getkey(…)Why can't every class be termed as user defined data type?