Question: For c++ What expression at ??????? in the code segment below will make the following statement print Blue? int numberA = 6; int numberB =
For c++ What expression at ??????? in the code segment below will make the following statement print "Blue"? int numberA = 6; int numberB = 3;
if (???????) cout << "Red"; else cout << "Blue";
| A: | numberA > numberB && numberA < numberB |
| B: | numberA > numberB || numberA < numberB |
| C: | numberA * numberB == numberB * numberA |
| D: | numberA * numberB >= numberB * numberA |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
