Multiple choice Which of the following statements is the correct output statement in C++? cin>>"India"; cin<<"India"; cout<<"India"; cout>>"India"; cout<<India; Reveal answer Fill a bubble to check yourself C Correct answer Explanation This is the correct option as the insertion operator is used and the statement is enclosed inside double quotes.