Multiple choice technology programming languages Which of the following servlet methods can return null? getInitParameterNames() getInitParameter(String name) getServletName() getServletContext() Reveal answer Fill a bubble to check yourself B Correct answer Explanation The getInitParameter(String name) method of a Servlet returns a String containing the value of the named initialization parameter, or null if the parameter does not exist. Other methods like getServletContext() do not return null.