InterviewSolution
Saved Bookmarks
| 1. |
Example of Relational Operators |
| Answer» EXPLANATION:The TYPES of relational operators> Example x > y (x is GREATER than y) < Example: x < y (x is less than y) >= Example x >= y (x is greater than or EQUAL to y) <= Example x <= y (x is less than or equal to y) == Example x == y (x is equal to y) != Example x != y (x is not equal to y) | |