Question 6 of 108
Given an HttpServletRequestrequest and HttpResponseresponse, which sets a cookie "username" with the value "joe" in a servlet?
    Correct Answer: F

Question 7 of 108
Which 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 108
APIs for dynamically registering servlets and filters can be called at:
    Correct Answer: A

Question 9 of 108
ServletRegistration.Dynamic can be used to configure (Choose two)
    Correct Answer: B, C

Question 10 of 108
A 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?
    Correct Answer: C