C QUESTION write true or false for yySolutionCase 1 If x no
C++ QUESTION write true or false for y<x is the same as x>=y
Solution
Case 1 : If x not equal to y then y<x is same as x>=y is true.
y<x means x>y then for x not equal to y y<x and x>=y are same.
ex:- take x=3 and y=2 2<3 means 3>2 which is same as 3>=2.
Case 2 : If x equal to y then y<x is same as x>=y is false.
y<x means x>y then for x equal to y y<x and x>=y are different.
ex:- take x=3 and y=3 2<3 means 3>3 which is not same as 3>=3.
