Multiple choice Find the value of C. C = (a>0 && a<1)? a : b given a =10 , b = 20 10 20 C will take garbage value 0 or 1 None of these Reveal answer Fill a bubble to check yourself B Correct answer Explanation (a>0 && a<1)? a : b (10>0 && 10 <1)? a :b(10>0 && 10 <1) generate false value and b is executed.