The sl:shoppingList and sl:item tags output a shopping list to the response and are used as follows: <sl:shoppingList> <sl:item name=”Bread” /> <sl:item name=”Milk” /> <sl:item name=”Eggs” /> </sl:shoppingList> The tag handler for sl:shoppingList is ShoppingListTag and the tag handler for…

Give the JSP code <html> <body> <jsp:useBean id=’customer’ class=’com.example.Customer’/> Hello,${customer.title} ${customer.lastName}, welcome to squeaky Beans, Inc. </body> </html> Which three types of JSP code are used? (Choose three) A. Java code B. Template text C. Scripting code D. Standard action…