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 TL and its use?
what is the proxy pattern?
When a thread terminates its processing, it enters into what state?
cud u help me ... i am struggling with this question... to find all the subsets of a given set for ex.... a,,b,c shud give all the subsets.... i gt the program in c bt nt able to get it in java..... help needed ..
Difference between DurableSubscription and non- DurableSubscription?
function of extends and implements keywords?
What are the pros and cons of detached objects?
Explain ioc concept?
what is meant by JRMP?
difference between HashMap, Hashset and hashTable?
Define the remote interface?
Explain about thread synchronization inside a monitor?