What is the lifecycle of an applet?
Answers were Sorted based on User's Feedback
Answer / m abhishek
following four methods in an applet's life:
public void init();//called once in an applet's life, when
the applet is first loaded.
public void start();//called at least once in an applet's
life, when the applet is started or restarted.
public void stop();//called at least once in an applet's
life, when the browser leaves the page in which the applet
is embedded.
public void destroy();//called once in an applet's life,just
before the browser unloads the applet.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / janet
All the above and also one more method is the part of
applet life cycle.
i.e Paint() method: can be called when the applet is
minimized or maximized.
| Is This Answer Correct ? | 0 Yes | 1 No |
What are the different methods of identifying an object?
How to add new JTabbed pane?
What happens when we invoke a thread?s interrupt method while it is in sleeping or waiting condition?
What are callback interfaces?
What is the difference between RMI and Corba?
How do u supress the parameters from the displaying in the url?
How many ways can a thread be used?
when we applied start()method on a thread ,how does it know that to execute run()method on that object?
Name the class that is used to bind the server object with RMI Registry?
What is a session? Can you share a session object between different theads?
what is catalina in tomcat server.
What is JasperReports?