How many times garbage collector will invoke an object?s
finalize() method?
Answer Posted / ranganathkini
at least once during its lifetime
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
What happens if a try-catch-finally statement does not have a catch clause to handle an exception that is thrown within the body of the try statement?
Explain the difference between runnable and callable interface in java?
what is the difference between a threads start() and run() methods? : Java thread
which one is more efficient int x; 1. if(x==null) 2.if(null==x) state which one either 1 or 2?
Why is java so popular?
What is the diffrence between inner class and nested class?
Can we have a try block without catch block?
What does singleton mean in java?
What is a copy constructor in java?
What is the method to declare member of a class static?
How do you add an element to a hashset in java?
How we can skip finally block of exception even if some exception occurs in the exception block in java?
What is the inheritance?
What is a protected method?
What is purpose of keyword void?