Find the value of z in the following expression, if x = 10 and y = 4.
a. z = x % y ;
b. z = ( x < 20 ) && ( y < 5 )
c. z = ( x > 20 ) ; ; ( y > 5 )
Answers
Answered by
4
Answer:
a) 10%4=2
b) z=(10<20)&&(4<5)=True(Since,both are true)
c) z=(x>20)or(4>5)=False(Since,both are false)
Similar questions