Which three types of JSP code are used?

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.)

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:



Leave a Reply 1

Your email address will not be published. Required fields are marked *


Luis Fernando Rosero Zapata

Luis Fernando Rosero Zapata

For example:
jsp:useBean is standard action.
$ customer.title is an expression language.
Hello is a template text.