what are the methods of an object class?
Answers were Sorted based on User's Feedback
Answer / m.pushpa
clone(),
equals(Object obj),
protected void finalize(),
Class getClass(),
int hashCode(),
void notify(),
void notifyAll(),
String toString(),
void wait() ,
void wait(long timeout),
void wait(long timeout, int nanos),
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / paletipatisrinu
object is the super class for all the class the following
methods are
clone(),
equals(Object obj),
protected void finalize(),
Class getClass(),
int hashCode(),
void notify(),
void notifyAll(),
String toString(),
void wait() ,
void wait(long timeout),
void wait(long timeout, int nanos),
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / malay
Wait() , notify(), toString(), equals() , clone()
Is This Answer Correct ? | 2 Yes | 1 No |
How do you decide when to use arraylist and linkedlist?
What does sprintf return?
How do you check whether the list is empty or not in java?
What is the difference between class forname and new?
Why bytecode is called bytecode?
for(i=0;i<100;i++) { int i=method();//method returns no's from 1 to 10; /* insert some stmts which can give output like no.of times numbers(1-10) returned. (for example if it returns 2 then i want output how many times 2 returned) like that i want output for no's 1 - 10 how many times each no returned. */ }
What do you understand by a Static Variable?
What is singletonlist in java?
What is meant by class and object in java?
What are the operands of instanceof operator?
What happens when a thrown exception is not handled?
Catch(Exception e){ } in that what is Exception and purpose of that in that place exactly?