Multiple choice technology programming languages

What are the JSP scripting elements?

  1. Declaration

  2. Scriplets

  3. Expressions

  4. All the above

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

JSP has three main scripting elements: Declaration (<%! ... %>) for declaring variables or methods, Scriptlets (<% ... %>) for embedding Java code, and Expressions (<%= ... %>) for outputting values. All three are fundamental JSP scripting elements, making 'All the above' the correct answer.