🎴 Flashcard Mode
PHP and JSP Web Technologies
Card1 / 20
Mastered0
Review0
QuestionClick to flip
JSP expressions should be enclosed within
AnswerClick to flip back
A
<%= %>
💡 Explanation:
JSP (JavaServer Pages) uses specific syntax for different types of code: <%= %> for expressions (evaluated and output), <% %> for scriptlets (Java code), and <%! %> for declarations. Expressions enclosed in <%= %> are evaluated at runtime and their result is sent to the output stream.