kaldin

  • Login

Struts Exam


3) What are Tag Libraries provided with Struts?
  • A)

  • B)

  • C)

  • D)

Previous Next
Show Answer:
Show Answer


More Question
What are the problems that the org.apache.struts.action.ActionServlet address
Select components that can be used as model.
In Following Code 01: public class MyForm extends ActionForm 02: 03: private String field; 04: 05: public void setField(String value) 06: field = value; 07: 08: 09: public String getField() 10: return field; 11: 12: 13: public ActionErrors validate(ActionMapping mapping, HttpServletRequest request) 14: ActionErrors errors = new ActionErrors(); 15: return errors; 16: 17: 18: What will be the expected result when you try to compile and execute it
Which code snippet correctly implements execute method, that processes the specified request and creates the corresponding response
The validate() method in the ActionForm class has a return type of: