Computer Science, asked by smitachatterjee98, 7 months ago

If a=100, b=200 and c=300 Then which of the following expression returns true.

i) a*3==b ii) a+b > c iii) a<=100 && b>200 iv) none​

Answers

Answered by bulaniboruah11
0

Answer:

iv) none

because

i) a * 3 = 300 =! b

ii) a + b = 300 !> c

iii) a = 100 <= 100 but b = 200 !> 200

Similar questions