look the code
import java.applet.*;
import java.awt.*;
public class MyApplet extends Applet{
// all the required methods implemented
}
/*
<
applet code="MyApplet" width=400 height = 500>
</applet>
*/
compile command : javac MyApplet.java
execute command : appletviewer MyApplet.java
if the commented code present then window of size 400*500 sit on the desktop otherwise no window is seen
how this commented code is working please explain
thanks in advance