The expression staticcast 9 9 evaluate to 99 10 90 9 Suppos
     The expression static_cast (9, 9) evaluate to ___  9.9  10  9.0  9  Suppose that alpha and beta are int variables. The statement alpha - beta --i is equivalent to the statement(s) ___  alpha - 1 - beta;  alpha - beta - 1;  beta - beta - 1;  alpha - beta;  alpha = beta;  beta - beta - 1;  An operator that has only one operated is called a unique operator.  True False 
  
  Solution
-> The expression static_cast int (9.9) evaluates to 9 ( d.9 )
-> Ans: a. alpha = 1- beta
-> True. An operator that has only one operand is called a unique operator

