11.
Which of the following escape sequence represents tab?
a) \t
b) \t\r
c) \b
d) \a
Answer: a
Explanation:
\t is used to represent tab which means a set of blank spaces in a line.
12.
Who created C++?
a) Bjarne Stroustrup
b) Dennis Ritchie
c) Ken Thompson
d) Brian Kernighan
Answer: a
Explanation:
Bjarne Stroustrup is the original creator of C++ during 1979 at AT&T Bell Labs.
13.
Which of the following is called insertion/put to operator?
a) <<
b) >>
c) >
d) <
Answer: a
Explanation:
<< operator is called insertion or put to operator i.e. insert/put things to console/files.
14.
Which of the following is called extraction/get from operator?
a) <<
b) >>
c) >
d) <
Answer: b
Explanation:
>> operator is called extraction or get from operator i.e. extract/get things from console/files.
15.
A language which has the capability to generate new data types are called ________________
a) Extensible
b) Overloaded
c) Encapsulated
d) Reprehensible
Answer: a
Explanation:
Languages that can produce/generate new data types are called extensible languages as they have the ability to handle new data types.