The OR (||) operator:

a. Has higher precedence than the AND (&&) operator.
b. Stops evaluation upon finding one condition to be true.
c. Associates from right to left.
d. Is a ternary operator.


b. Stops evaluation upon finding one condition to be true.

Computer Science & Information Technology

You might also like to view...

What is wrong with this code?

``` if(x = 2) { cout<<”The number is 2”; } ``` A. There should not be { }’s B. A semicolon is missing in the if statement – if (x = 2 ) C. The if statement should be if ( x == 2 ) D. Nothing

Computer Science & Information Technology

The Cut, Copy, and Paste commands are found on the Edit menu

Indicate whether the statement is true or false

Computer Science & Information Technology

To turn Format Painter off, you can press the ________ key

Fill in the blank(s) with correct word

Computer Science & Information Technology

Describe two advantages to using arrays to store data.

What will be an ideal response?

Computer Science & Information Technology