What are Different Types of applet ?
In : MCA Subject : Advanced Java ProgrammingLocal and Remote Applets
Local Applets
A local applet is one that is stored on your own computer system. When your Web page must find a local applet, it doesn't need to retrieve information from the Internet-in fact, your browser doesn't even need to be connected to the Internet at that time.
Ex:
<applet codebase="tictactoe" code="TicTacToe.class" width=120 height=120> </applet>
Remote Applets
A remote applet is one that is located on another computer system. This computer system may be located in the building next door or it may be on the other side of the world-it makes no difference to your Java-compatible browser. No matter where the remote applet is located, it's downloaded onto your computer via the Internet. Your browser must, of course, be connected to the Internet at the time it needs to display the remote applet.
Ex:
<applet codebase="http://www.myweb.com/applets/" code="TicTacToe.class" width=120 height=120> </applet>