What is the way to communicate from applet to servlet?
-
HTTP Communication
-
Socket Communication
-
RMI Communication
-
All the above
D
Correct answer
Explanation
Applets can communicate with servlets through multiple mechanisms. HTTP is the most common method using URL connections. Socket communication allows direct TCP/IP connections, and RMI enables Java-to-Java remote method calls. All three methods are valid for applet-servlet communication.