McqMate
Login
Register
Home
Search
Login
Register
Computer Science Engineering (CSE)
CPP Programming
The value 132.54 can be represented usin...
Q.
The value 132.54 can be represented using which data type?
A.
double
B.
void
C.
int
D.
bool
Answer» A. double
View all MCQs in:
CPP Programming
Discussion
Comment
Related Questions
Which of the following is true about templates? 1) Template is a feature of C++ that allows us to write one code for different data types. 2) We can write one function that can be used for all data types including user defined types. Like sort(), max(), min(), ..etc. 3) We can write one class or struct that can be used for all data types including user defined types. Like Linked List, Stack, Queue,..etc. 4) Template is an example of compile time polymorphism.
How to create a dynamic array of pointers (to integers) of size 10 using new in C++? Hint: We can create a non-dynamic array using int *arr[10]
When a language has the capability to produce new data type mean, it can be called as …...
Which data type is used to represent the absence of parameters?
Which type of data file is analogous to an audio cassette tape?
How can we restrict dynamic allocation of objects of a class using new?
In C++, const qualifier can be applied to 1) Member functions of a class 2) Function arguments 3) To a class data member which is declared as static 4) Reference variables
A member function can always access the data in __________, (in C++).
Which of the following is not correct (in C++)? 1. Class templates and function templates are instantiated in the same way 2. Class templates differ from function templates in the way they are initiated 3. Class template is initiated by defining an object using the template argument 4. Class templates are generally used for storage classes
Output of following program? #include<iostream> using namespace std; class Point { Point() { cout << "Constructor called"; } }; int main() { Point t1; return 0; }
Login to Continue
It will take less than 2 minutes
Continue with Google
Continue with Linkedin
Continue with Twitter
Report MCQ
Remark*
Report