OOP in Java

Is this your test? Login to manage it. If not, you can develop a test just like it.

This is a non-interactive preview of the quiz content.

1.
1 point
The abstract modifier states that the class implementation is incomplete and cannot be instantiated.
2.
1 point
The==operator tests two references to see if they refer to the same object.
3.
1 point
A _______________ is a collection of fields that hold values and methods that operate on those values
4.
1 point
How many reference types are defined by Java?
5.
1 point
public class Integer extends Number implements Serializable, Comparable {
// class members go here
}

The above class signature is correct.
6.
1 point
Which of the following class signatures is incorrect
7.
1 point
The final modifier states that the class implementation is incomplete and cannot be instantiated.
8.
1 point
The ability to hide members enables the classes an object-oriented design technique known as data:
9.
1 point
A class which is a kind of local class that has no name and combines the syntax for class definition with the syntax for object instantiation is known as
10.
1 point
In C++ we use free() to reclaim memory when an object is no more needed. In java this is done automatically and process is called____________________