Question: Which of the following Java SE exception handling blocks are valid? a . try { openFile ( ) ; } finally { closeAndDispose ( )

Which of the following Java SE exception handling blocks are valid?
a. try{
openFile();
}
finally{
closeAndDispose();
}
b. try{
openFile();
}
finally{
closeAndDispose();
}
catch( Exception ex){
//exception caught
}
c. try {
opeFile();
}
catch (Exception ex){
//exception caught
}
finally {
closeAndDispose();
}
d. try {
openFile();
}
closeAndDispose();
catch(Exception ex){
// Exception caught
}
finally {
//finished
}
e. try {
openFile();
}
catch(NumberFormatException | NullPointerException ex){
//exception caught
}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!