Use the check mark Squareroot to answer the following questi
     Use the check mark (Squareroot) to answer the following questions with either  The label and the result of the control expression in a switch statement cannot be of type float  If a = 0, b = 0, then the result of the expression !(a | | b) is true  If a = 0, b = 0 then the result of the expression a | | b b >= 2 is true  The continue statement is used to terminate the loop   
  
  Solution
1) True The expression used in switch must be integral type ( int, char and enum). Any other type of expression is not allowed.
2) True because a || b is 0 and not to them is 1 which is true
3) False becase b>=2 is 0 and a || b is also 0 so result is false
4) False because its used to continue to next statement

