Answer Posted / 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 |
Post New Answer View All Answers
What is the purpose of the wait(), notify(), and notifyall() methods?
What restrictions are placed on the location of a package statement within a source code file?
int x=5,i=1,y=0; while(i<=5) { y=x++ + ++x; i=i+2; } System.out.println(x); System.out.println(y); System.out.println(i); How to solve this? Please explain!
what are the advantages of JTA over JTS?
What is the diffrence between a local-tx-datasource and a xa-datasource? Can you use transactions in both?
How is a java object message delivered to a non-java client?
How to pass parameters in RMI?
Which containers use a border layout as their default layout?
What is the difference between the session.update() method and the session.lock() method?
What are the pros and cons of detached objects?
What are the diff types of exception?
What value does read() return when it has reached the end of a file?
Which javutil classes and interfaces support event handling?
Can I map more than one table in a cmp?
how do you Handle Front End Application data against DB with example?