MCQOPTIONS
Saved Bookmarks
| 1. |
What is the length of the application box made by this program?import java.awt.*;import java.applet.*; public class TextApplet extends Applet { public void paint(Graphics g) { g.drawString("A Simple Applet created...", 50, 50); } } |
| A. | 20 |
| B. | 30 |
| C. | 40 |
| D. | 50 |
| E. | 60 |
| Answer» E. 60 | |