Computer Science, asked by omravindar1971, 28 days ago

Which of the following operator is relational operator
(a) + (b) > (c) and ​

Answers

Answered by sariQus
0

Answer:

> is the relational operator

Explanation:

The relational operators are < , > , <= , >= , == , and !=

Answered by Equestriadash
9

(b) > is a relational operator.

Relational operators are operators that are used testing equality. When used, they generally return Boolean values, i.e., 'True' or 'False'.

  • Relational operators include >, <, >=, <=, == and !=.

There are mainly 4 types of operators in Python.

1. Arithmetic Operators

They're used for calculations/algebraic expressions.

2. Relational Operators

As mentioned above, they're used for testing equality/relations.

3. Logical Operators

They're used for testing one or more relations.

4. Assignment Operators

They're used for assigning values to a variable.

Similar questions