What will be the coordinates of the third point of the polygon?
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) (60, 140)
B) (140, 60)
C) (100, 140)
D) (140, 100)
A) (60, 140)
You might also like to view...
Which of the following is not a sequence container provided by the Standard Library?
a. vector b. array c. list d. deque
To prepare for disaster recovery, an organization must have which of the following?
a. Multiple servers b. Multiple routers c. A wiring plan d. A backup plan
A field that stores the value of a mathematical operation is:
a. an aggregate field b. a calculated field c. an expression
A server has a single, half height, PCI-X 3.3v slot available. Which of the following cards can fit in this slot? (Select THREE).
A. Half Height, Universally Keyed PCI card B. Full Height, 3.3v PCI-X card C. Half Height, x16 PCI Express Card D. Half Height, 3.3v PCI card E. Half Height, Universally Keyed PCI-X card F. Full Height, Universally Keyed PCI card G. Half Height, x8 PCI Express Card