Multiple choice technology programming languages

What is the effect of evaluation of following expression? Select the one correct answer. ${(5*5) ne 25}

  1. true

  2. false

  3. 25

  4. The expression does not compile as ne is not a valid operator.

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

The expression evaluates whether (5*5) is 'not equal' (ne) to 25. Since 25 is equal to 25, the 'not equal' condition is false. In EL (Expression Language), 'ne' is a valid operator equivalent to '!='.