Podcast
Questions and Answers
What does the operator "==" do?
What does the operator "==" do?
- Checks if the values of two operands are not equal
- Checks if the values of two operands are equal (correct)
- Checks if the value of left operand is greater than the value of right operand
- Checks if the value of left operand is less than the value of right operand
What does the operator "<=" do?
What does the operator "<=" do?
- Checks if the values of two operands are equal
- Checks if the values of two operands are not equal
- Checks if the value of left operand is greater than the value of right operand
- Checks if the value of left operand is less than or equal to the value of right operand (correct)
What does the operator ">" do?
What does the operator ">" do?
- Checks if the values of two operands are not equal
- Checks if the values of two operands are equal
- Checks if the value of left operand is greater than the value of right operand (correct)
- Checks if the value of left operand is less than the value of right operand