InterviewSolution
Saved Bookmarks
| 1. |
Which category of data type a class belongs to?(a) Fundamental data type(b) Derived data type(c) User defined derived data type(d) Atomic data type |
|
Answer» The correct choice is (c) User defined derived data type The explanation: Fundamental/Atomic data type includes int, char, float, double and void. Derived data type includes arrays, pointers, references, function and constants. User defined derived data type includes class, structure, union and enumeration. |
|