🎴 Flashcard Mode
JSP and JSTL Programming
Card1 / 12
Mastered0
Review0
QuestionClick to flip
What is the effect of evaluation of following expression? Select the one correct answer. ${(5*5) ne 25}
AnswerClick to flip back
A
false
💡 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 '!='.