Oracle 1Z0-808 Exam question no. 5

Q.- Given this code for the classes MyException and Test:-

public class MyException  extends RunTimeException
{

}

public class Test
{
                 public static void main(String[ ] args) 
                 {
                            try 
                            {       
                                  methodl(); 
                             }
                            catch (MyException no)       
                            {
                                  System.out.print("A"); 
                            }
                  }
                  public static void methodl() 
                 { 
                              // line n1 
                               try 
                              { 
                                   throw 3 > 10 ? new MyException(  )
                                                           : new IOException( );  
                               }        
                               catch (IOException ie)  
                              {
                                          System.out.println("I");
                              } 
                               catch (Exception re) 
                              {      
                                          System.out.print("B"); 
                              }
                }
}

What is the result? 

Α) Α  
B) AB  
С)
D) I  
E) A compile time error occurs at line n1. 


⧪ please give your answer in a comment section.

Post a Comment

6 Comments