What should a possible value of the be in order for the fol
     What should a possible value of the \"?\" be in order for the following statement to evaluate to true: (2 > 8)||(3  
  
  Solution
Answer: c. 6
? should be 6 becuase 2 > 8 will return false and 3 < 3 will return false. for getting true from this expression ? < 10 should return true. if ? is 6 value 6 < 10 will return true. so correct answer is 6.

