How many vertices does the polygon have?

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 }


A) 5
B) 6
C) 7
D) 8


D) 8

Computer Science & Information Technology

You might also like to view...

State the scope (global namespace scope or block scope) of each of the following elements:

a) The variable x in main. b) The variable y in function cube’s definition. c) The function cube. d) The function main. e) The function prototype for cube.

Computer Science & Information Technology

Percentages are ____ values.

A. indexed B. dynamic C. absolute D. relative

Computer Science & Information Technology

A ________ is a file that includes formatting elements, a theme, and slide layouts

A) template B) placeholder C) style D) thumbnail

Computer Science & Information Technology

A stripe set of maximum size is to be configured using two physical disks. One disk has 150GB and the other has 250GB in unallocated space. Which of the following will be the size of the stripe set?

A. 150GB B. 300GB C. 400GB D. 500GB

Computer Science & Information Technology