Match the following code with their correct meaning x y x
     Match the following code with their correct meaning.  x != y  (x > 5) && (x  5)  true if x equals y  true if x is not equal to y  true if x is greater than or equal to y  true if x is less than 5 or greater than 10  true if x is greater than 5 and less than 5  true if x is less than or equal to 5  true if x is less than or equal to y 
  
  Solution
Answer:
A is matching with 2
B is matching with 5
C is matching with 7
D is matching with 1
E is matching with 4
F is matching with 3
G is matching with 6

