InterviewSolution
Saved Bookmarks
| 1. |
Which of these functions is called to display the output of an applet?(a) display()(b) paint()(c) displayApplet()(d) PrintApplet() |
|
Answer» The correct answer is (b) paint() Easiest explanation: Whenever the applet requires to redraw its output, it is done by using method paint(). |
|