This chapter is from the book
Quiz
Review today’s material by taking this three-question quiz. Answers are at the end of the book.
Questions
-
Which operator do you use to call an object’s constructor and create a new object?
- +
- new
- instanceof
-
What kind of methods apply to all objects of a class rather than an individual object?
- Universal methods
- Instance methods
- Class methods
-
If you have a program with objects named obj1 and obj2, what happens when you use the statement obj2 = obj1?
- The instance variables in obj2 are given the same values as obj1.
- obj2 and obj1 are considered to be the same object.
- Neither A nor B.