Java Applet Programming Question: Download Java Applet PDF

What is the sequence for calling the methods by AWT for applets?

Tweet Share WhatsApp

Answer:

When an applet begins, the AWT calls the following methods, in this sequence:

► init()
► start()
► paint()

When an applet is terminated, the following sequence of method calls takes place :

► stop()
► destroy()

Download Java Applet PDF Read All 26 Java Applet Questions
Previous QuestionNext Question
What are the Applets Life Cycle methods? Explain them?How do Applets differ from Applications?