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 to eliminate duplicates from an array?
6 Answers ABC, AdMod, Adobe, College School Exams Tests, Patni, Wipro,
Why we use static and synchronized in method for single thread model example: public static synchronized add(){}
How do you implement tree mirroring in java?
What are selection structures?
What is complexity in java?
Question 6 [9] 6.1 In what situations (in general) would you use a TreeMap? (3) 6.2 In what situations (in general) would you use a HashSet to store a collection of values?
how can we synchronize Hash map?
Explain reverse a linked list iterative solution in java?
What is a default package ?
What is thread safe in java?
worst case complexities of Quick sort and Merge sort.
Can we declare an array without size in java?