MCQOPTIONS
Saved Bookmarks
| 1. |
What is the length of the application box made by this program?import java.awt.*;import java.applet.*; public class Applet_Example extends Applet { Graphic graphic; graphic.drawString("A Simple Applet",25, 25); } |
| A. | Compilation Error |
| B. | Runtime Error |
| C. | Default Value |
| D. | 25 |
| E. | None of these |
| Answer» B. Runtime Error | |