Java Programming Language MCQ Java Exception MCQ
⚠ Report ✓ Question Verified Copy Link
public class Test{ public static void main(String args[]){ try{ int i; return; } catch(Exception e){ System.out.print("inCatchBlock"); } finally{ System.out.println("inFinallyBlock"); } } }
Learn More MCQ Questions from Java Programming Language MCQ Java Exception MCQ