Multiple choice technology programming languages

What is the way to communicate from applet to servlet?

  1. HTTP Communication

  2. Socket Communication

  3. RMI Communication

  4. All the above

Reveal answer Fill a bubble to check yourself
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.