Prepare Interview

Mock Exams

Make Homepage

Bookmark this page

Subscribe Email Address

Java%20Applet%20Interview%20Questions%20and%20Answers

Question: What are the Applets Life Cycle methods? Explain them?
Answer:

methods in the life cycle of an Applet: 

  • init( ) method - called when an applet is first loaded. This method is called only once in the entire cycle of an applet. This method usually intialize the variables to be used in the applet.
  • start( ) method - called each time an applet is started.
  • paint( ) method - called when the applet is minimized or refreshed. This method is used for drawing different strings, figures, and images on the applet window.
  • stop( ) method - called when the browser moves off the applet's page.
  • destroy( ) method - called when the browser is finished with the applet.
Is it helpful? Yes No

Most helpful rated by users:

©2024 WithoutBook