Menu
Share

Servlet Quiz

answer the following questions and click 'Mark Test' when finished to see how well you did.

  1. In which file do we define a servlet mapping?

    web.xml
    servlet.mappings
    servlet.xml
    Simple.java
     
  2. Given the following servlet mapping definition for the web application named 'secureapp',
    <servlet>
      <servlet-name>ProcessLoginData</servlet-name>
      <servlet-class>DoLogin</servlet-class>
    </servlet>
    
    <servlet-mapping>
      <servlet-name>ProcessLoginData</servlet-name>
      <url-pattern>do/Login</url-pattern>
    </servlet-mapping>
    
    which of the following URLs will correctly request the Servlet?

    http://www.mywebapp.com/secureapp/Login?name="bob"
    http://www.mywebapp.com/Login?name="bob"
    http://www.mywebapp.com/secureapp/doLogin?name="bob"
    http://www.mywebapp.com/secureapp/do/Login?name="bob"