Multiple choice technology programming languages Correct validate () method? public ActionErrors validate(ActionMapping mapping,HttpServletReuest reuest) public ActionError validate(ActionMapping mapping, HttpServletReuest reuest) public ActionError validate(HttpServletReuest reuest, HttpServletResponse response) None of the above Reveal answer Fill a bubble to check yourself A Correct answer Explanation The validate() method signature is public ActionErrors validate(ActionMapping mapping, HttpServletRequest request). It returns ActionErrors (plural) to collect multiple validation failures, and accepts the mapping and request objects.