COMPUTER PROGRAMMING FUNDAMENTALS
5 BASIC ELEMENTS OF PROGRAMMING
Question
[CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
|
Select the not equivalent relational operator.
|
<=
|
|
==
|
|
>
|
|
>=
|
Explanation:
Detailed explanation-1: -Relational Operators It is used to compare two numbers by checking whether they are equal or not, less than, less than or equal to, greater than, greater than or equal to. == (Equal to)– This operator is used to check if both operands are equal. !=
Detailed explanation-2: -"Option A : ! is not a relational operator, it is logical operator". Explanation : Option A is not a relational operator, it is a logical operator. Relational operators are >, <, >=, <=, ==, !=
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.