Quiz 9 -- CS 290W -- Mar 30, 99

(1) What does the method drawRoundRect do?
(1) draws a rectangle with rounded corners
(2) draws a rectangle around an existing rectangle
(3) draws an oval
(4) draws a "filled" rectangle
(1)

(2) What method is used to re-awaken a suspended thread?
(1) start
(2) restart
(3) resume
(4) suspend
(3)

(3) What does
class FileSearch extends Thread
mean?
(1) class FileSearch is a subclass of the Thread class
(2) class Thread is a subclass of the FileSearch class
(3) class FileSearch is a subclass of the Applet class
(4) class FileSearch and class Thread are unrelated classes
(1)