Java Programming Language MCQ Java Exception MCQ
⚠ Report ✓ Question Verified Copy Link
1. try{ 2. //some code goes here 3. } 4. catch(NullPointerException ne){ 5. System.out.print("1 "); 6. } 7. catch(RuntimeException re){ 8. System.out.print("2 "); 9. } 10. finally{ 11. System.out.print("3"); 12. }
Learn More MCQ Questions from Java Programming Language MCQ Java Exception MCQ