
Post


@EclipseJavaIDE Try block should be followed by either one catch block and/or one finally block. In presence of finally block, Control skips return statements in try and catch blocks, jumps to finally block and returns back to try catch block if no return statement on finally block.
Ans: 1
English

@EclipseJavaIDE "1"
which sort of developer code like this ?
English

@EclipseJavaIDE The control goes to return statement in try block but it does not return from there. Eventually it executes return statement from finally block and prints “1” on console.
English

@EclipseJavaIDE if finally block is there then value will get return from fanially. answer is l
English












