Question 6 of 108Given an HttpServletRequestrequest and HttpResponseresponse, which sets a cookie "username" with the value "joe" in a servlet?
Correct Answer: F
Question 7 of 108Which annotation enables a servlet to efficiently process requests of typo multipart/form-data that involve large files being uploaded by the client?
Correct Answer: B
Question 8 of 108APIs for dynamically registering servlets and filters can be called at:
Correct Answer: A
Question 9 of 108ServletRegistration.Dynamic can be used to configure (Choose two)
Correct Answer: B, C
Question 10 of 108A web application wants to register a new servlet at runtime using one of the servletContext.addServlet methods. In the implementation of which method is it legal to perform this operation?