To retrieve all the parameter names sent in a request, you can use the __________ method of the HttpServletRequest object.

  • getParameterNames()
  • getParameterValues()
  • getRequestParameters()
  • retrieveParameters()
The getParameterNames() method of the HttpServletRequest object is used to retrieve all the parameter names sent in a request.

Can servlet initialization parameters be changed at runtime?

  • It depends on the servlet container
  • No
  • Only through a filter
  • Yes
No, servlet initialization parameters cannot be changed at runtime. They are set during the servlet's initialization and remain constant throughout the servlet's lifecycle.

How is a cookie sent from a client to the server in an HTTP request?

  • As a URL parameter
  • As a part of the request body
  • As a part of the request headers
  • As a separate HTTP request
Cookies are sent from a client to the server as a part of the request headers in an HTTP request.