×
Login Or SignUp
Privacy Policy
Terms Of Service
freetests4u.com
Online Knowledge Sharing Platform
Login/SignUp
freetests4u.com
Blogs
Mock Tests
Videos
Jobs
16 .
What is the output of this program ?
#include <`iostream`> (Please neglect `` this signs)
#include <`limits`> (Please neglect `` this signs)
using namespace std;
int main( )
{
cout << numeric_limits
:: max() << endl;
}
A.
53723
B.
32423
C.
32767
D.
53462
View Answer
Ans: 32767
17 .
Identify the user-defined types from the following ?
A.
enumeration
B.
classes
C.
both a and b
D.
int
View Answer
Ans: both a and b
18 .
The value 132.54 can represented using which data type ?
A.
double
B.
void
C.
int
D.
bool
View Answer
Ans: double
19 .
When language has the capability to produce new data type mean, it can be called as
A.
overloaded
B.
extensible
C.
encapsulated
D.
reprehensible
View Answer
Ans: extensible
20 .
What are the operators available in dynamic memory allocation ?
A.
new
B.
delete
C.
compare
D.
both a and b
View Answer
Ans: both a and b
1
2
3
4
5
6
7
8
9
10
11