Multiple choice

>> is also called

  1. extraction operator

  2. insertion operator

  3. unary Operator

  4. binary operator

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

In C++, the >> operator is used with input streams (like cin) to extract data, hence it's called the extraction operator. For example: cin >> variable; reads input into the variable.