Regarding the OR operator OR is a a unary operator OR is a
     Regarding the OR (||) operator OR is a a unary operator  OR is a ternary operator OR can only occur once per if the left hand side of an OR expression is true, the right hand side is not evaluated  An example of a unary operator is the_operator  > relational = assignment ++increment ?conditional  Consider the following code x = 6; if(x = 
  
  Solution
answer to 31 is:
last option .
when the left of or is true right side is not evaluated as in or we require only 1 to be true.

