×
Login Or SignUp
Privacy Policy
Terms Of Service
freetests4u.com
Online Knowledge Sharing Platform
Login/SignUp
freetests4u.com
Blogs
Mock Tests
Videos
Jobs
46 .
What is the output of this program ?
#include <`iostream`> (Please neglect `` this signs)
#include <`string`> (Please neglect `` this signs)
using namespace std;
int main ()
{
string str ("Steve jobs");
cout << str.length();
return 0;
}
A.
8
B.
9
C.
10
D.
11
View Answer
Ans: 10
47 .
Which type is best suited to represent the logical values ?
A.
integer
B.
boolean
C.
character
D.
All of the mentioned
View Answer
Ans: boolean
48 .
How does the strings are stored in the memory ?
A.
Contiguous
B.
Non-contiguous
C.
None of the mentioned
D.
All of the mentioned
View Answer
Ans: Contiguous
49 .
Which operator is having the highest precedence ?
A.
unary
B.
shift
C.
equality
D.
postfix
View Answer
Ans: postfix
50 .
The switch statement is also called as ?
A.
choosing structure
B.
selective structure
C.
certain structure
D.
None of the mentioned
View Answer
Ans: selective structure
1
2
3
4
5
6
7
8
9
10
11