Gadget
Quiz von , erstellt am more than 1 year ago

Questions about basics in Java Core

259
8
0
Gadget
Erstellt von Gadget vor mehr als 9 Jahre
Schließen

Java Core. Basics

Frage 1 von 2

1

What is the general meaning of Object in java?

Wähle eine der folgenden:

  • Object is the root-super class of any object in Java. All objects extend this class by default, even if there is no extends-section in signature of class.

  • Everything in Java is an object.

  • Object is an ordinary class. It has number of useful methods like equals, hashCode, toString. If any new class require to use these methods or override them it must contain "extends Object" section in it's signature.

Erklärung

Frage 2 von 2

5

List all methods in Object class which are allowed to be extended or overridden

Wähle eine oder mehr der folgenden:

  • getClass

  • hashCode, equals

  • toString

  • clone

  • finalize

  • wait, notify, notifyAll

  • getMethods

  • valueOf

  • sleep, notify, notifyAll

  • equalsIgnoreCase

Erklärung