What is the difference between servlets and applets?
i. Servlets execute on Server; Applets execute on browser
ii. Servlets have no GUI; Applet has GUI
iii. Servlets creates static web pages; Applets creates dynamic web pages
iv. Servlets can handle only a single request; Applet can handle multiple requests
A. i, ii, iii are correct
B. i, ii are correct
C. i, iii are correct
D. i, ii, iii, iv are correct
Answer: Option B
A. A Java program that runs on the server to handle client requests
B. A type of coffee bean
C. A Java class used for file I/O
D. A Java keyword
Which of the following is a valid method in the `HttpServlet` class in Java?
A. `handleRequest()`
B. `runServlet()`
C. `execute()`
D. `doGet()`
What is the purpose of the `web.xml` file in a Java web application?
A. To define JavaBean properties
B. To execute SQL queries
C. To configure servlet mappings and other web application settings
D. To create JavaBeans
In Java Servlets, what is the purpose of the `HttpServletRequest` object?
A. To create JavaBean properties
B. To encapsulate the client's request information
C. To manage JavaBean events
D. None of These

Join The Discussion