applet | | parameters which are passed from the HTML file to the applet when the applet is loaded | an instance of Applet class, JApplet class or one of their subclasses | a Java-compatible Web browser | Java program | Java applet | Applets | import java.awt.Graphics; class HelloWorldApplet extends java.applet.Applet { public void paint(Graphics g) { g.drawString("HelloWorld!",5,25); } } | a stop method which may be executed anytime, usually when the applet is not immediately visible | the executing machine's environment | a main method if it is used solely in a browser | standalone | Java 1.0 or Java 1.1 because most web browsers do not support later versions of Java | | an HTML page | A program that adheres to certain conventions that allow it to run within a Java-enabled browser | arguments from the command line | | a remote or local location | an init method | a set of conventions that lets it run within a Java-compatible browser |