Multiple choice technology programming languages

Servlets are typically used for...

  1. Create a JVM for applets.

  2. Extending a web server by providing dynamic web content.

  3. Storing information in applets.

  4. Loading buttons and menus.

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

Servlets are Java programs that run on a web server or application server, handling client requests to generate dynamic web content. Unlike static HTML pages, servlets process incoming requests (typically HTTP), interact with databases or other back-end systems, and produce customized responses. Options A and C incorrectly associate servlets with applets, which are client-side Java programs, while option D describes GUI components, not server-side functionality.