Given: 31 //some code here 32 try{ 33 //some code here 34 }catch (SomeException ex){ 35 //some code here 36 }finally { 37 //some code here 38 } select appropriate answer?
A.The instance get garbage collected. B.Code in line 33 throws an exception. C.Code in line 35 throws an exception. D.Code in line 31 throws an exception. E.Code in line 33 executes successfully.
View All Comments
| View Tutorial