Google News
logo
Java - Interview Questions
what is the sequence for calling the methods by AWT for applets?
When an applet begins, the AWT calls the following methods, in this sequence:
  1. init()
  2. start()
  3. paint()
When an applet is terminated, the following sequence of method calls takes place :
  4. stop()
  5. destroy()
Advertisement