Multiple choice technology programming languages

Which of the following is NOT a valid symbol to use in an IF condition

  1. =

  2. =<

  3. =>

  4. >

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

In standard programming syntax, the 'greater than or equal to' operator is written as '>=' (less-than sign followed by equals sign). The symbol '=>' is not a valid comparison operator in any major programming language - it's typically used for arrow functions or hash rockets in specific languages, not for numeric comparisons.