Multiple Choice
What will be the output after the following C++ statements have been executed?
Int a, b, c, d;
A = 4;
B = 12;
C = 37;
D = 51;
If a < b )
Cout << "a < b" << endl;
If a > b )
Cout << "a > b" << endl;
If d <= c )
Cout << "d <= c" << endl;
If c != d )
Cout << "c != d" << endl;
A) a < b c != d
B) a < b d <= c
C != d
C) a > b c != d
D) a < b c < d
A != b
Correct Answer:

Verified
Correct Answer:
Verified
Q3: Which of the following is a variable
Q9: In what order would the following operators
Q10: Which of the following is a compilation
Q12: What is the value of result after
Q14: The escape sequence for a newline is:<br>A)
Q15: Which of the following is not a
Q17: Which of the following is not a
Q18: Which of the following statements would display
Q19: Which of the following statements could potentially
Q21: Which of the following code segments prints