what's the difference between Java Applets and Application?
Answers
Answer:
The main difference between Applet and Application is that the applet is a small java program that can be executed by a Java-compatible web browser while the application is a standalone program that can directly run on the machine.
An applet is specifically designed to be executed within an HTML document using a Java-enabled web browser. It is a small program and does not affect the operating system or the hardware. An application is a standalone java program that can be directly run on the machine. It will perform the tasks defined in the program regardless of the computer architecture.
Answer:The main difference between Applet and Application is that the applet is a small java program that can be executed by a Java-compatible web browser while the application is a standalone program that can directly run on the machine. ... An application is a standalone java program that can be directly run on the machine.
Explanation: