InterviewSolution
Saved Bookmarks
| 1. |
The value 132.54 can be represented using which data type?(a) double(b) void(c) int(d) boolI have been asked this question during a job interview.Question is taken from Types in chapter Types, Pointers, Arrays & Structures in C++ of C++ |
|
Answer» CORRECT option is (a) DOUBLE The explanation: The GIVEN value is with decimal points, so float or double can be used. |
|