40.
What will be the output of the following code?
public class Test{
public static void main(String args[]){
try{return;}
finally{ System.out.println("Finally");}
}
}
Select 1 correct answer:
A. No output.
B. The output will be "Finally".
C. Compile error.
D. Nothing of the above.