Multiple choice technology web technology

Which are the JSP scripting elements below?

  1. Declarations

  2. Scriptlets

  3. Expressions

  4. Include

Reveal answer Fill a bubble to check yourself
A,B,C Correct answer
Explanation

JSP has three main scripting elements: Declarations (<%! %>) for declaring variables/methods, Scriptlets (<% %>) for embedding Java code, and Expressions (<%= %>) for outputting values. Directives and actions are not considered scripting elements.