Which two are true?

Given an EL function declared with:

Which two are true? (Choose two)

Given an EL function declared with:

Which two are true? (Choose two)

A.
The function method must have the signature:
public String spin().

B.
The method must be mapped to the logical name โ€œspinโ€ in the web.xml file.

C.
The function method must have the signature:
public String spinIt().

D.
The function method must have the signature:
public static String spin().

E.
The function method must have the signature:
public static String spinIt().

F.
The function class must be named Spinner, and must be in the package com.example.



Leave a Reply 2

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


giuseppe

giuseppe

E,F correct because de EL mapped method must be public and static

I’ve found the EL function declaration:

Given an EL function declared with:
11.
12. spin
13. com.example.Spinner
14.
15. java.lang.String spinIt()

16.
17.

giuseppe

giuseppe

the ๐Ÿ™‚