0 votes
in JAVA by
Which method of the Class.class is used to determine the name of a class represented by the class object as a String?

i) getClass()

ii) intern()

iii) getName()

iv) toString()

1 Answer

0 votes
by

iii) getName()

Reason: The getName() method of the Class class returns the name (as String) of the entity (class, interface) represented by this Class object. It is a non-static method, and available in the java.lang package.

The getClass() method of the Object class returns the runtime class of this object. The intern() and toString() methods are of String class.

...