What are the JSP scripting elements?
-
Declaration
-
Scriplets
-
Expressions
-
All the above
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.