Multiple choice

Which of the following statements is not applicable for the SingleThreadModel in the Servlet applications?

  1. This is an interface implemented by the servlet.

  2. This is an abstract class which extends the Servlet interface.

  3. The SingleThreadModel ensures that the Servlet will handle one request at a time.

  4. The SingleThreadModel does not have any method.

  5. None of the above

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

This is false about SingleThreadModel. It is an interface which is implemented by the Servlet class.