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?

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

25
True or False: Packages go inside Files
False, Files go inside Packages
26
# These are reversed cards the code/tag that surrounds web pages
HTML-HyperText MarkUp Language
27
# These are reversed cards used to interpret and view the results of applet code
Appletviewer
28
# These are reversed cards behavior of an object
method
29
# These are reversed cards NetBeans
IDE-Integrated Development Environment
30
# These are reversed cards identifying names that have special meaning in programming language
reserved words
31
# These are reversed cards messenger between classes
object
32
# These are reversed cards a system of interlinked hypertext documents accessed via the internet
WWW
33
# These are reversed cards blueprint of an object
class
34
# These are reversed cards lines of text that are ignored by compiler
comments
35
# These are reversed cards upper left
X,Y coordinates are the ______ corner of the shape
36
# These are reversed cards //
Single line comment
37
# These are reversed cards /\*...\*/
Multi line comment
38
# These are reversed cards Color myBrown=new Color (R, G, B);
new color
39
# These are reversed cards g.drawLine (x1, x2, y1, y2);
how to draw line
40
# These are reversed cards import
preprocessor directives always start wth
41
# These are reversed cards Can be either global or local and tells you when a variable can be used
Scope
42
# These are reversed cards ; (semicolon)
What character ends every command?
43
# These are reversed cards Red value
In the command, Color myBrown=new Color (100, 200, 300); What does 100 mean?
44
# These are reversed cards Green value
In the command, Color myBrown=new Color (100, 200, 300); What does 200 mean?
45
# These are reversed cards Blue value
In the command, Color myBrown=new Color (100, 200, 300); What does 300 mean?
46
# These are reversed cards The name of your color
In the command, Color myBrown=new Color (100, 200, 300); What does myBrown mean?
47
# These are reversed cards A class
What does a capital letter at the beginning of word mean in Java usually
48
# These are reversed cards False, Files go inside Packages
True or False: Packages go inside Files