adplus-dvertising
frame-decoration

Question

What is the length of the application box made by this program?
    import java.awt.*;
    import java.applet.*;
    public class myapplet extends Applet
    {
        Graphic g;
        g.drawString("A Simple Applet", 20, 20);    
    }

a.

20

b.

Default value

c.

Compilation Error

d.

Runtime Error

Answer: (c).Compilation Error

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the length of the application box made by this program?