8 Flashcards

1
Q

Starts a new line after displaying the text.

A

println

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

A value that denotes the location of the object in memory.

A

Object Reference

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

Method which converts any String to uppercase equivalent by creating a new String object.

A

toUpperCase

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

An operator (=) that changes the value of the variable to the left of the operator.

A

Assignment Operator

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

Method which counts the number of characters in a String.

A

length() method

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

Operator for multiplication.

A

*

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

Lists the classes and methods of the Java library.

A

API Documentation

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

An operator that constructs new objects.

A

New Operator

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

A primitive data type, integer.

A

int

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

Used to show a frame(window).

A

JFrame

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

Extracts information from an object without changing it. Usually prefixed with ‘get’.

A

Accessor

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

255, 0, 0

A

The RGB Values of Color.RED

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

Java classes grouped together in order to be imported by other programs.

A

Package

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

Used to store values that can be used repeatedly in a class.

A

Variables

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

Method that alters the attributes of an object.

A

Mutator

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

Graphical Java program that runs in a web browser or viewer. To run one must have an HTML file with an applet tag.

A

Applet

17
Q

Belong to classes.

A

Objects

18
Q

A class having more than one method with the same name.

A

Overloaded

19
Q

Stored in Object variables and denotes the memory location of an Object.

A

Object References

20
Q

Operator for subtraction.

A

-