go to previous page   go to home page   go to next page highlighting

Answer:

The test part of the loop can use the OR operator to allow several choices.


Boolean Expression in a Condition

The test part of a loop (any of the three varieties) is a boolean expression. We want a boolean expression that evaluates to true if the user enters:

and evaluates to false for anything else. Here is a near-complete expression:

while ( chars.equals( "yes" )   chars.equals( "YES" )   
        chars.equals( "y" )     chars.equals( "Y" )  )

QUESTION 8:

Fill in the blanks.


go to previous page   go to home page   go to next page