Wednesday 4 February 2015

Latest Java Applet Interview Questions and Answers (Part5)

21. What are the Applets Life Cycle methods? Explain them?
methods in the life cycle of an Applet:
? init() method - called when an applet is first loaded. This method is called only once in the entire cycle of an applet. This method usually intialize the variables to be used in the applet.
? start( ) method - called each time an applet is started.
? paint() method - called when the applet is minimized or refreshed. This method is used for drawing different strings, figures, and images on the applet window.
? stop( ) method - called when the browser moves off the applet?s page.
? destroy( ) method - called when the browser is finished with the applet.

22. What is the order of method invocation in an Applet?
? public void init() : Initialization method called once by browser.
? public void start() : Method called after init() and contains code to start processing. If the user leaves the page and returns without killing the current browser session, the start () method is called without being preceded by init ().
? public void stop() : Stops all processing started by start (). Done if user moves off page.
? public void destroy() : Called if current browser session is being terminated. Frees all resources used by applet.

23. In our URLs and in the text of the buttons we have comma. Its causing an error. Is there a way to change the delimiting character for the menu arguments?
Since 2.00 version our applets support an user-defined delimiter for the menu arguments. To modify the default delimiter add the following parameter (you can use any character as a delimiter):
<param name="delimiter" value="~">
and use it within "menuItems":
<param name="menuItems" value="
{Home~http://www.atoztarget.com/index.php}
{Features, Setup~http://www.atoztarget.com/}
">

24. How to insert your applets into FrontPage?
1. Place the .class file in the directory containing the HTML document into which you want to insert the applet.
2. Copy the <applet>...</applet> tag from your applet implementation or examples to the clipboard.
3. In FrontPage select the "HTML" tab from the lower left hand corner.
4. Paste the <applet>...</applet> tag in an appropriate place between the <body> and </body> tags. You'll find a gray box with the aqua letter "J" in the "Normal" view indicating the the applet tag has been inserted.
5. To see the applet appearance select the "Preview" tab.

25. How will you initialize an Applet?
Write my initialization code in the applets init method or applet constructor.

26. What is an Applet? Should applets have constructors?
Applets are small programs transferred through Internet, automatically installed and run as part of web-browser. Applets implements functionality of a client. Applet is a dynamic and interactive program that runs inside a Web page displayed by a Java-capable browser. We don?t have the concept of Constructors in Applets. Applets can be invoked either through browser or through Appletviewer utility provided by JDK.
More Questions & Answers :-
Part1  Part2  Part3  Part4  Part5

No comments:

Post a Comment