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?
Which textcomponent method is used to set a textcomponent to the read-only state?
How do you maintain a stateful session object across the session
difference between applicationserver and webserver
Explain about local interfaces.
How do you set security in applets?
how the mapping can be done from jsp to actionservlet?
Why use a datasource when you can directly specify a connection details? (in a J2EE application)
Why does the option tag render selected=selected instead of just selected?
What is a modular application?
1) Scenario: I developed my application on local system and everything is perfect and tested. Now on UAT this application is deployed on clustered server environment. They are logical or physically clustered. But application is not working over there.  What is the issue with application?  What are the first things which come in your mind?
i have a 1000 objects in data base i need to display those in jsp's how can i retrive those objects in jsp. (consider the performance issue)