Multiple choice >> is also called extraction operator insertion operator unary Operator 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.