Saturday, March 29, 2008

Java Applets Technical Interview Test Questions 15

Java applet interview questions

  1. 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.

  2. What are the Applet’s Life Cycle methods? Explain them? - Following are 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.

  3. What is the sequence for calling the methods by AWT for applets? - When an applet begins, the AWT calls the following methods, in this sequence:

    • init()

    • start()

    • paint()

    When an applet is terminated, the following sequence of method calls takes place :

    • stop()

    • destroy()

  4. How do Applets differ from Applications? - Following are the main differences: Application: Stand Alone, doesn’t need
    web-browser. Applet: Needs no explicit installation on local machine. Can be transferred through Internet on to the local machine and may run as part of web-browser. Application: Execution starts with main() method. Doesn’t work if main is not there. Applet: Execution starts with init() method. Application: May or may not be a GUI. Applet: Must run within a GUI (Using AWT). This is essential feature of applets.

  5. Can we pass parameters to an applet from HTML page to an applet? How? - We can pass parameters to an applet using tag in the following way:

    Access those parameters inside the applet is done by calling getParameter() method inside the applet. Note that getParameter() method returns String value corresponding to the parameter name.

  6. How do we read number information from my applet’s parameters, given that Applet’s getParameter() method returns a string?
    - Use the parseInt() method in the Integer Class, the Float(String) constructor or parseFloat() method in the Class Float, or the
    Double(String) constructor or parseDoulbl() method in the class Double.

  7. How can I arrange for different applets on a web page to communicate with each other?
    - Name your applets inside the Applet tag and invoke AppletContext’s getApplet() method in your applet code to obtain references to the
    other applets on the page.

  8. How do I select a URL from my Applet and send the browser to that page? - Ask the applet for its applet context and invoke showDocument() on that context object.

    URL targetURL;
    String URLString
    AppletContext context = getAppletContext();
    try
    {
    targetURL = new URL(URLString);
    }
    catch (MalformedURLException e)
    {
    // Code for recover from the exception
    }
    context. showDocument (targetURL);
  9. Can applets on different pages communicate with each other?
    - No, Not Directly. The applets will exchange the information at one meeting place either on the local file system or at remote system.

  10. How do I determine the width and height of my application?
    - Use the getSize() method, which the Applet class inherits from the Component class in the Java.awt package. The getSize() method returns the size of the applet as a Dimension object, from which you extract separate width, height fields. The following code snippet explains this:

    Dimension dim = getSize();
    int appletwidth = dim.width();
    int appletheight = dim.height();
  11. Which classes and interfaces does Applet class consist? - Applet class consists of a single class, the Applet class and three interfaces: AppletContext, AppletStub, and AudioClip.

  12. What is AppletStub Interface?
    - The applet stub interface provides the means by which an applet and the browser communicate. Your code will not typically implement this interface.

  13. What tags are mandatory when creating HTML to display an applet?

    1. name, height, width

    2. code, name

    3. codebase, height, width

    4. code, height, width

    Correct answer is d.

  14. What are the Applet’s information methods?
    - The following are the Applet’s information methods: getAppletInfo() method: Returns a string describing the applet, its author, copyright information, etc. getParameterInfo( ) method: Returns an array of string describing the applet’s parameters.

  15. What are the steps involved in Applet development? - Following are the steps involved in Applet development:

    • Create/Edit a Java source file. This file must contain a class which extends Applet class.

    • Compile your program using javac

    • Execute the appletviewer, specifying the name of your applet’s source file or html file. In case the applet information is stored in html file then Applet can be invoked using java enabled web browser.

  16. Which method is used to output a string to an applet? Which function is this method included in? - drawString( ) method is used to output a string to an applet. This method is included in the paint method of the Applet.

No comments: