Google News
logo
CPP - Quiz(MCQ)
What is string objects in C++?
A)
Stream of characters
B)
Stream of alphabets
C)
A stream of characters terminated by \0
D)
A stream of well-defined characters

Correct Answer :   A stream of well-defined characters


Explanation : Strings are objects that represent sequences of characters. The standard string class provides support for such objects with an interface similar to that of a standard container of bytes, but adding features specifically designed to operate with strings of single-byte characters.

Advertisement