Multiple choice technology web technology

What is true about Servlet?(Choose all that apply)

  1. Run on Java enabled web browser

  2. Serverside Applet

  3. Platform independent

  4. Multithread processing

  5. Session information is maintainable with servlets

Reveal answer Fill a bubble to check yourself
B,C,D,E Correct answer
Explanation

Servlets are server-side components that run in a web container, NOT in a browser (A is false). They are platform-independent Java programs (C), support multithreaded request processing (D), and can maintain session information via HttpSession (E). The term 'Serverside Applet' is accurate (B).