In C++, operator >> is used along with object cin for reading input is known…
2021
In C++, operator >> is used along with object cin for reading input is known as _____.
Answer: A. extraction — In C++, the >> operator used with the cin object is called the extraction operator because it extracts input from the keyboard/input stream and stores it into…
- A.
extraction
- B.
output
- C.
get in
- D.
put to
Attempted by 53 students.
Show answer & explanation
Correct answer: A
In C++, the >> operator used with the cin object is called the extraction operator because it extracts input from the keyboard/input stream and stores it into variables.
Example:
cin >> x;Here, >> takes input and places it into variable x.
Loading lesson…