Under what conditions is an object’s finalize() method invoked by the garbage collector?
No Answer is Posted For this Question
Be the First to Post Answer
How are Java source code files named?
Explain scope or life time of local variables in java?
Why do we need hashmap in java?
What is the meaning of 3 dots in java?
What is join () in java?
What are different access specifiers in java?
why there are multiple catches for a try block.don't tell me that there can be multiple exception of a code segment that's why.tell me the real fact behind this.
Given: 1. package test; 2. 3. class Target { 4. public String name = “hello”; 5. } What can directly access and change the value of the variable name? 1 any class 2 only the Target class 3 any class in the test package 4 any class that extends Target
What is the difference between Java1.4 and Java1.5
how to java plateform independent?
What are the problems faced by java programmers who don't use layout managers?
Can subclass overriding method declare an exception if parent class method doesn't throw an exception?