if a b a c then the condition will be true only if-02542
if (a>b && a>c) then the condition will be true only if
This multiple choice question (MCQ) is related to the book/course vu cs201 Introduction to Programming. It can also be found in vu cs201 Final Term - Quiz No.3.
if (a>b && a>c) then the condition will be true only if
Both a>b and a>c are true
a>b is false and a>c is true
a>b is true and a>c is false
Both a>b and a>c are false