Multiple Choice
What is the output of the following code?
if (6 > 8)
{
Cout << " ** " << endl ;
Cout << "****" << endl;
}
else if (9 == 4)
cout << "***" << endl;
else
cout << "*" << endl;
A) *
B) **
C) ***
D) ****
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q2: A(n)_ structure does not require the evaluation
Q4: What is the output of the
Q8: The conditional operator ?: takes _ arguments.<br>A)
Q8: In a _ control structure, the computer
Q10: What is the output of the
Q11: What is the output of the following
Q23: The expression (x >= 0 && x
Q24: A control structure alters the normal sequential
Q29: Which of the following operators has the
Q34: For a program to use the assert