MCQOPTIONS
Saved Bookmarks
| 1. |
What is the length of the application box made by this program?import java.awt.*; import java.applet.*; public class Newapplet extends Applet { Graphic G; G.drawString("A Simple Applet created...",100,100); } |
| A. | A Simple Applet created... |
| B. | 10 |
| C. | 100 |
| D. | Compilation Error |
| E. | Runtime Error |
| Answer» E. Runtime Error | |