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
What are the default and parameterized constructors?
How do you escape sequences in java?
What is a map in java?
What are examples of modifiers?
In a program, initializing an array of 100 KB is throwing an out of memory exception while there is 100 MB of memory available. Why?
What is difference between java and java ee?
What is the use of protected in java?
Are variables stored in ram?
How do you reverse a string in java?
How do you define a variable?
How do you convert string to int in java?
What is a conditional statement explain with example?
Explain the advantages of packages in java?
What is compareto?
Can a hashset contain duplicates java?