MCQ IN COMPUTER SCIENCE & ENGINEERING

COMPUTER SCIENCE AND ENGINEERING

ALGORITHMS

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
Which python operator means ‘less than or equal to’?
A
>=
B
>
C
<
D
<=
Explanation: 

Detailed explanation-1: -The less than or equal to operator, denoted by <=, returns True only if the value on the left is either less than or equal to that on the right of the operator.

Detailed explanation-2: -The less than or equal ( <= ) operator returns true if the left operand is less than or equal to the right operand, and false otherwise.

There is 1 question to complete.