Solved

Match Each Item with a Statement Below

Question 37

Matching

Match each item with a statement below:

Premises:
The ultimate base class for all other types
Using the same method name to indicate different implementations
Also known as a derived class
Returns true if two Object s have the same memory address
A synonym for base class
Can be used by a class and its descendants
A class that cannot be extended
Returns a string containing an object's class
Occurs when two reference type objects refer to the same object
Responses:
GetType()
polymorphism
Equals()
System.Object
extended class
reference equality
superclass
protected members
sealed class

Correct Answer:

The ultimate base class for all other types
Using the same method name to indicate different implementations
Also known as a derived class
Returns true if two Object s have the same memory address
A synonym for base class
Can be used by a class and its descendants
A class that cannot be extended
Returns a string containing an object's class
Occurs when two reference type objects refer to the same object
Related Questions