Multiple Choice
Look at the following applet code:
1 import javax.swing.*;
2 import java.awt.*;
3 public class GraphicsTest extends JApplet
4 {
5 public void init()
6 {
7 getContentPane() .setBackground(Color.WHITE) ;
8 }
9 public void paint(Graphics g)
10 {
11 int[] xCoords = {20, 20, 60, 100, 140, 140, 100, 60};
12 int[] ycoords = {20, 100, 140, 140, 100, 60, 20, 20};
13 super.paint(g) ;
14 g.setColor(Color.YELLOW) ;
15 g.fillPolygon(xCoords, yCoords, 8) ;
16 g.setColor(color.BLACK) ;
17 g.setFont(new Font("SansSerif", Font.BOLD, 35) ) ;
18 g.drawString("SLOW", 35, 95) ;
19 }
20 }
What is the color of the polygon?
A) White
B) Yellow
C) Black
D) None of the above
Correct Answer:

Verified
Correct Answer:
Verified
Q15: Some browsers do not directly support the
Q16: The _ object is responsible for drawing
Q17: What does the HTML tag <hr />
Q18: Hypertext can contain:<br>A) a Java application program<br>B)
Q19: Applet restrictions are:<br>A) necessary to prevent malicious
Q21: Which of the following is NOT a
Q22: In an applet, events are handled:<br>A) with
Q23: Which tag will produce largest text?<br>A) <h4>Hello</h4><br>B)
Q24: The browser creates an instance of the
Q25: The delay parameter in the Timer constructor