Chapter 20 Flashcards
1
Q
Does applet have access to client’s file system
A
No
2
Q
What is JRE
A
Java run time environment
3
Q
What is appletviewer
A
This is an application from sun to view applet without using browser.
4
Q
What are classes for applet
A
Applet or JApplet
5
Q
What is applet tag of HTML
A
Java applet that draws animated bubbles.
6
Q
What is the command to run appletviewer
A
appletviewer test.html
7
Q
What are applet methods
A
public void init() public void start() public void stop() public void destroy() public void paint(Graphics)
8
Q
When start method of applet called
A
start is called whenever applet is maximized
9
Q
When stop method of applet called
A
stop is called whenever applet is minimized
10
Q
what paint method of applet called
A
for repaint
11
Q
What is random method
A
Math.random()