Chapter 2 Flashcards
1
Q
What is true if more than one class is in a source code file.
A
Only one of them may be public
2
Q
Java API
A
The standard Java library
3
Q
The System class in Java contains
A
Methods and objects that perform system-level tasks.
4
Q
How character data is stored in Java
A
Unicode Characters
5
Q
What keyword in Java indicates a constant value
A
final
final int CAL_SALES_TAX;
6
Q
Primitive variables
A
Contain the value of that they have been assigned; int and float.
7
Q
Reference variables
A
Contain the memory address of the object’s location; strings, other objects.