If x = 2 , y = 3 and z = 4a) x>y && z =2
find the output
Answers
Answered by
3
FALSE
int x = 2 ;
int y = 3 ;
int z = 4 ;
boolean a = x>y ;
// a = 2>3
False
Similar questions