Answer Posted / venkat.kanneganti
yes,nested try statements are possible,nothing wrong
try {
//some code
try {
//some code
}
catch(Exception e){
}
}
catch(Exception e) {
}
Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Can static method access instance variables ?
What does this () mean in java?
What is the transient keyword?
Which collection is thread safe in java?
What is instanceof keyword?
What is meant by data hiding/encapsulation?
What do you mean by ternary operator in java?
What are aggregate functions explain with examples?
Why do we need hashmap in java?
What is instance synchronization?
Why is method overloading not possible by changing the return type in java?
Can you make a constructor final?
What is literal example?
Can we serialize arraylist in java?
What is treeset in java collection?