True/False
The statement
pass = (score >= 7) ?
True : false;
does exactly the same thing as the if/else statement below:
if (score >= 7)
pass = True;
else
pass = false;
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q3: If the sub-expression on the left side
Q13: The _ statement executes one block of
Q14: logical operators AND and OR have a
Q15: The _ statement causes other program statements
Q16: A(n) _ is a variable, usually a
Q17: When an if statement is placed within
Q19: The following C++ test checks if the
Q20: Which of the following correctly declares an
Q22: The _ operator takes an operand and
Q23: Relational operators allow you to _ numbers.<br>A)