What is the Dictionary class?
The Dictionary class provides the capability to store key-value pairs.
How are the elements of a BorderLayout organized?
The elements of a BorderLayout are organized at the borders (North, South, East, and West) and the center of a container.
What is the % operator?
It is referred to as the modulo or remainder operator. It returns the remainder of dividing the first operand by the second operand.
When can an object reference be cast to an interface reference?
An object reference be cast to an interface reference when the object implements the referenced interface.
What is the difference between a Window and a Frame?
The Frame class extends Window to define a main application window that can have a menu bar.
Which class is extended by all other classes?
The Object class is extended by all other classes.
Can an object be garbage collected while it is still reachable?
A reachable object cannot be garbage collected. Only unreachable objects may be garbage collected..
Is the ternary operator written x : y ? z or x ? y : z ?
It is written x ? y : z.
What is the difference between the Font and FontMetrics classes?
The FontMetrics class is used to define implementation-specific properties, such as ascent and descent, of a Font object.
How is rounding performed under integer division?
The fractional part of the result is truncated. This is known as rounding toward zero.