Computer Science, asked by nadeemakhtar0411, 4 months ago

e. Give the resultant of the following expressions where a=1,b=2 and c=3.
1. a>b && c*3>=5+a​

Answers

Answered by ItzMeSam35
1

Question:-

a = 1, b = 2, c = 3;

a>b && c*3>=5+a

Output:-

False

Reason:-

a > b && c * 3 >= 5 + a

= 1 > 2 && 3 × 3 >= 5 + 1

= false && 9 >= 6

= false && true

= false

Similar questions