Saved Bookmarks
| 1. |
What is the difference between a Java servlet and a Java applet? |
|
Answer» An applet is a compiled Java bytecode program that is transmitted to a browser via HTTP and is invoked using the HTTP protocol on the user's workstation. A servlet is a Java program that is invoked on the server to respond to HTTP requests. |
|