Given the JSP code:
10. <html>
11. <body>
12. <jsp:useBean id=’customer’ class=’com.example.Customer’ />
13. Hello, ${customer.title} ${customer.lastName}, welcome
14. to Squeaky Beans, Inc.
15. </body>
16. </html>
Which three types of JSP code are used? (Choose three.)
A.
Java code
B.
template text
C.
scripting code
D.
standard action
E.
expression language
Explanation:
For example:
jsp:useBean is standard action.
$ customer.title is an expression language.
Hello is a template text.