Multiple choice technology web technology

Which of the following is NOT true about servlets?

  1. They are instantiated every time a request is made

  2. They are a mechanism used by the class loader to download applets

  3. They can be used instead of CGI scripts

  4. They require a web browser that supports JDK 1.1

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

Servlets are server-side Java programs that extend server capabilities, typically running in a web container with a single instance handling multiple requests via threading (not reinstantiated per request). They can replace CGI scripts for generating dynamic web content and run entirely on the server, so client browser JDK support is irrelevant. The statement about class loaders downloading applets is unrelated to servlets - that describes applet mechanisms, not servlet technology.