CH1 Flashcards

1
Q

HTML-HyperText MarkUp Language

A

the code/tag that surrounds web pages

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Appletviewer

A

used to interpret and view the results of applet code

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

method

A

behavior of an object

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

IDE-Integrated Development Environment

A

NetBeans

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

reserved words

A

identifying names that have special meaning in programming language

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

object

A

messenger between classes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

WWW

A

a system of interlinked hypertext documents accessed via the internet

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

class

A

blueprint of an object

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

comments

A

lines of text that are ignored by compiler

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

X,Y coordinates are the ______ corner of the shape

A

upper left

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

g.drawOval (100, 200, 300, 400); what is each number

A

100=x 200=y 300=width 400=height

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

g.drawLine (100, 200, 300, 400); what is each number

A

100=x1 200=y1 300=x2 400=y2

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Single line comment

A

//

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Multi line comment

A

/*…*/

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

new color

A

Color myBrown=new Color (R, G, B);

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

how to draw line

A

g.drawLine (x1, x2, y1, y2);

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

preprocessor directives always start wth

A

import

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

Scope

A

Can be either global or local and tells you when a variable can be used

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

What character ends every command?

A

; (semicolon)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

In the command, Color myBrown=new Color (100, 200, 300); What does 100 mean?

A

Red value

21
Q

In the command, Color myBrown=new Color (100, 200, 300); What does 200 mean?

A

Green value

22
Q

In the command, Color myBrown=new Color (100, 200, 300); What does 300 mean?

A

Blue value

23
Q

In the command, Color myBrown=new Color (100, 200, 300); What does myBrown mean?

A

The name of your color

24
Q

What does a capital letter at the beginning of word mean in Java usually

A

A class

25
Q

True or False: Packages go inside Files

A

False, Files go inside Packages

26
Q

These are reversed cards

the code/tag that surrounds web pages

A

HTML-HyperText MarkUp Language

27
Q

These are reversed cards

used to interpret and view the results of applet code

A

Appletviewer

28
Q

These are reversed cards

behavior of an object

A

method

29
Q

These are reversed cards

NetBeans

A

IDE-Integrated Development Environment

30
Q

These are reversed cards

identifying names that have special meaning in programming language

A

reserved words

31
Q

These are reversed cards

messenger between classes

A

object

32
Q

These are reversed cards

a system of interlinked hypertext documents accessed via the internet

A

WWW

33
Q

These are reversed cards

blueprint of an object

A

class

34
Q

These are reversed cards

lines of text that are ignored by compiler

A

comments

35
Q

These are reversed cards

upper left

A

X,Y coordinates are the ______ corner of the shape

36
Q

These are reversed cards

//

A

Single line comment

37
Q

These are reversed cards

/*…*/

A

Multi line comment

38
Q

These are reversed cards

Color myBrown=new Color (R, G, B);

A

new color

39
Q

These are reversed cards

g.drawLine (x1, x2, y1, y2);

A

how to draw line

40
Q

These are reversed cards

import

A

preprocessor directives always start wth

41
Q

These are reversed cards

Can be either global or local and tells you when a variable can be used

A

Scope

42
Q

These are reversed cards

; (semicolon)

A

What character ends every command?

43
Q

These are reversed cards

Red value

A

In the command, Color myBrown=new Color (100, 200, 300); What does 100 mean?

44
Q

These are reversed cards

Green value

A

In the command, Color myBrown=new Color (100, 200, 300); What does 200 mean?

45
Q

These are reversed cards

Blue value

A

In the command, Color myBrown=new Color (100, 200, 300); What does 300 mean?

46
Q

These are reversed cards

The name of your color

A

In the command, Color myBrown=new Color (100, 200, 300); What does myBrown mean?

47
Q

These are reversed cards

A class

A

What does a capital letter at the beginning of word mean in Java usually

48
Q

These are reversed cards

False, Files go inside Packages

A

True or False: Packages go inside Files