Computer Science, asked by RohanAswal, 11 months ago

Example of Relational Operators​

Answers

Answered by Heenap780
1

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)

Answered by Anonymous
1

Answer:

Operators Example/Description

____________________________________

> x > y (x is greater than y)

< x < y (x is less than y)

>= x >= y (x is greater than or equal to y)

<= x <= y (x is less than or equal to y)

== x == y (x is equal to y)

!= x != y (x is not equal to y)

Similar questions