A ____ evaluates to a true or false value.

A. sentinel
B. condition
C. Boolean expression
D. selection structure


Answer: C

Computer Science & Information Technology

You might also like to view...

If the subscript of a subscripted variable is not between 0 and one less than the array size:

a) there will be a syntax error b) there will be a run-time error c) the subscript will be set to zero d) a memory cell outside the array will be referenced

Computer Science & Information Technology

Examine the overall size of your game (pixel by pixel). What percentage of your screen real estate could be dedicated to your controls?

What will be an ideal response?

Computer Science & Information Technology

MIME is primarily associated with this feature of email

What will be an ideal response?

Computer Science & Information Technology

What would the browser display if the following code is executed in a script?

``` var grade = 59 if ( grade >= 60 ) document.writeln( "Passed." ); else document.write( "Failed. " ); document.writeln( "You must take this course again." ); ``` a) Passed. b) Failed. c) You must take this course again. d) Failed. You must take this course again.

Computer Science & Information Technology