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 is the form of storage space in java?
What is prototype?
How two threads will communicate with each other?
Where does the session Object stores? If 100 users are connecting to the server. How does it recognize which session belongs to which user?
5 Answers HCL, Mobillo Venture,
which is the better collection class if the requirement is only displaying the data
What’s jboss jbpm?
whats is mean by connectionpooling
If I wanted to use a solarisui for just a jtabbedpane, and the metal ui for everything else, how would I do that?
Why does most servlets extend HttpServlet?
How to implement RMI in Java?
What class is used to create Server side object ?
What must a class do to implement an interface?