(Choose 1 answer)
<web-app>
<servlet>
<servlet-name>Test Servlet</servlet-name>
<servlet-class>com.abc. Test Servlet</servlet-class>
Consider the Servlet definition in a web.xml file below.
<init-param>
<param-name>locale</param-name>
<param-value>US</param-value>
(see picture)
<init-param>
What will the following line of code return if present in the init() method of TestServlet?getInitParameter(1);
<init-param>
<param-name>timezone</param-name>
<param-value>eastern</param-value>
A. Compilation error.
<init-param>
B. It will return "eastern".
</servlet>
C. It will return null.
</web-app>
D. Runtime error.
E. It will return "US".