Home »
MCQs »
C++ MCQs
Which of the following is an insertion operator in C++?
32. Which of the following is an insertion operator in C++?
- <<
- >>
- ->
- <<<
Answer: A) <<
Explanation:
In C++, "<<" is known as the insertion operator which is used with the "cout" object to print data on the console screen.