Learn
Control Flow in Ruby
Combining Boolean Operators
You can combine boolean operators in your expressions. Combinations like
(x && (y || w)) && z
are not only legal expressions, but are extremely useful tools for your programs.
These expression may take some getting used to, but you can always use parentheses to control the order of evaluation. Expressions in parentheses are always evaluated before anything outside parentheses.
Instructions
1.
Last one! Set each variable to true
or false
depending on what value you expect the expression to return.