Gadget
Quiz por , criado more than 1 year ago

Questions about basics in Java Core

255
8
0
Gadget
Criado por Gadget aproximadamente 9 anos atrás
Fechar

Java Core. Basics

Questão 1 de 2

1

What is the general meaning of Object in java?

Selecione uma das seguintes:

  • 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.

Explicação

Questão 2 de 2

5

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

Selecione uma ou mais das seguintes:

  • getClass

  • hashCode, equals

  • toString

  • clone

  • finalize

  • wait, notify, notifyAll

  • getMethods

  • valueOf

  • sleep, notify, notifyAll

  • equalsIgnoreCase

Explicação