Which of the following expressions would check if a number, x, is outside the range 90 - 100, inclusive (i.e., either less than 90 or greater than 100)?

a. x < 90 AND x > 100
b. x <= 90 AND x >= 100
c. x < 90 OR x > 100
d. x <= 90 OR x >= 100


c. x < 90 OR x > 100

Computer Science & Information Technology

You might also like to view...

In pseudocode, a dual-outcome selection consists of three parts:• The word If, the condition expression, and the word Then• The statement or statements to be performed if the condition is true; indented for readability• The words End If lined up under the word If

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

The Paste option ________ pastes text and applies the formatting in use in the new location

Fill in the blank(s) with correct word

Computer Science & Information Technology

Which attribute would make the best primary key?

a. Social security number b. Last name c. First name d. Age

Computer Science & Information Technology

The Multiply blending mode can be used to reproduce real-world color situations.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology