FUNDAMENTALS OF COMPUTER

COMPUTER PROGRAMMING FUNDAMENTALS

PROGRAMMING LANGUAGES

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
The following relational operator is valid except
A
<=
B
=>
C
>=
D
==
Explanation: 

Detailed explanation-1: -Expert-Verified Answer Relational operators in python are : >, <, ==, !=, >=, <=. Greater than returns true when left operand is greater than the right operand.

Detailed explanation-2: -D) <> All of the others are valid relational operators. <= means less than or equal to, > meansgreater than, == means equal to, and != means not equal to.

Detailed explanation-3: -Which of the following is not a relational opeartor in Python? Explanation: = is not considered as a relational operator in Python.

There is 1 question to complete.