• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/19

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

19 Cards in this Set

  • Front
  • Back

1

java.awt

2

It is a parameter of the paint method.

3

false

4

true

5

a static field of the Color class

13

250

16

g.setColor( Color.RED );

17

g.drawString( "Fill in the Code", 100, 250 );

18

g.fillRect( 50, 30, 100, 300 );

20

g.fillOval( 100, 100, 200, 200 );

21

Graphics is an abstract class; a Graphics object cannot be instantiated


Answer: (ex.) super.paint (g)

23

g.setColor( Color.GREEN );

24

There is no COBALT static field in the Color class.

25

g.setColor( Color.RED );

26

import java.awt.Graphics;

27

import javax.swing.JApplet;

28

public void paint ( Graphics g)

29

Color c = new Color( int 1.4, int 234, int 23 );

30

Color c = Color.BLUE;