Which of the following is called the insertion/put to operator in C++ ?
The correct answer is D) <<
In C++, the insertion (put to) operator is represented by <<. It is used to insert or output data to the output stream (usually the console or a file) in C++.
The << operator is used along with the cout object, which is part of the iostream library, to display data on the console. It allows you to send data to the output stream for display or printing. Let's briefly discuss the other options: