SlideShare a Scribd company logo
Exception Handling
   Duration 30 min.
Q1
What will the following code print when run?

public class Test
{
                static String j = "";
                public static void method( int i)
                {
                                   try
                                   {
                                                    if(i == 2)
                                                    {
                                                                 throw new Exception();
                                                    }
                                                     j += "1";
                                   }
                                   catch (Exception e)
                                   {
                                                    j += "2";
                                                   return;
                                   }
                                   finally
                                   {
                                                   j += "3";
                                    }
                                   j += "4";
                  }
 public static void main(String args[])
 {
  method(1);
  method(2);
  System.out.println(j);
 }
}
Select 1 correct option.
a 13432
b 13423
c 14324
d 12434
e 12342
Q2
Which digits, and in which order, will be printed when the following program is run?

public class TestClass
{
  public static void main(String args[])
  {
    int k = 0;
    try{
       int i = 5/k;
    }
    catch (ArithmeticException e){
       System.out.println("1");
    }
    catch (RuntimeException e){
       System.out.println("2");
       return ;
    }
    catch (Exception e){
       System.out.println("3");
    }
    finally{
       System.out.println("4");
    }
    System.out.println("5");
  }
}

Select 1 correct option.
a The program will print 5.
b The program will print 1 and 4, in that order.
c The program will print 1, 2 and 4, in that order.
d The program will print 1, 4 and 5, in that order.
e The program will print 1,2, 4 and 5, in that order.
Q3

What class of objects can be declared by the throws clause?


Select 3 correct options
a Exception


b Error


c Event


d Object


e RuntimeException
Q4
public class TestClass
{
   class MyException extends Exception {}
   public void myMethod() throws XXXX
   {
      throw new MyException();
   }
}
What should replace XXXX?

Select 3 correct options
a MyException

b Exception

c No throws clause is necessary

d Throwable

e RuntimeException
Q5
What will the following code print when run?

public class Test
{
                  static String s = "";
                   public static void m0(int a, int b)
                  {
                                    s +=a;
                                     m2();
                                      m1(b);
                   }
                   public static void m1(int i)
                  {
                                    s += i;
                  }
                   public static void m2()
                  {
                                    throw new NullPointerException("aa");
                  }
                   public static void m()
                  {
                                    m0(1, 2);
                                      m1(3);
                  }
 public static void main(String args[])
 {
   try
   {
                   m();
   }
   catch(Exception e){ }
   System.out.println(s);
 }
}

a   1
b   12
c   123
d   2
e   It will throw exception at runtime.
Q6
What will be the output of the following class...


class Test
{
  public static void main(String[] args)
  {
    int j = 1;
    try
    {
      int i = doIt() / (j = 2);
    } catch (Exception e)
    {
      System.out.println(" j = " + j);
    }
  }
  public static int doIt() throws Exception { throw new
Exception("FORGET IT"); }
}

Select 1 correct option.
a It will print j = 1;

b It will print j = 2;

c The value of j cannot be determined.

d It will not compile.

e None of the above.
Q7
What will be the result of compiling and running the following program ?

class NewException extends Exception {}
class AnotherException extends Exception {}
public class ExceptionTest
{
   public static void main(String[] args) throws Exception
   {
     try
     {
         m2();
     }
     finally
     {
         m3();
     }
     catch (NewException e){}
   }
   public static void m2() throws NewException { throw new NewException(); }
   public static void m3() throws AnotherException{ throw new AnotherException(); }
}

Select 1 correct option.
a It will compile but will throw AnotherException when run.
b It will compile but will throw NewException when run.
c It will compile and run without throwing any exceptions.
d It will not compile.
e None of the above.
Q8
class NewException extends Exception {}
class AnotherException extends Exception {}
public class ExcceptionTest
{
  public static void main(String [] args) throws Exception
  {
     try
     {
        m2();
     }
     finally{ m3(); }
   }
   public static void m2() throws NewException{ throw new NewException(); }
   public static void m3() throws AnotherException{ throw new
AnotherException(); }
}

Select 1 correct option.
a It will compile but will throw AnotherException when run.
b It will compile but will throw NewException when run.
c It will compile and run without throwing any exceptions.
d It will not compile.
e None of the above.
Q9
What will be the result of attempting to compile and run the following program?
public class TestClass
{
  public static void main(String args[])
  {
    try
    {
      ArithmeticException re=null;
      throw re;
    }
    catch(Exception e)
    {
      System.out.println(e);
    }
  }
}
Select 1 Correct option

a. The code will fail to compile, since RuntimeException cannot be caught by catching an
Exception.
b. The program will fail to compile, since re is null.
c. The program will compile without error and will print java.lang.RuntimeException when run.
d. The program will compile without error and will print java.lang.NullPointerException when
run.
e. The program will compile without error and will run and print 'null'.
Q10
Given the following program, which of these statements are true?
public class FinallyTest
{
  public static void main(String args[])
  {
    try
    {
        if (args.length == 0) return;
        else throw new Exception("Some Exception");
    }
    catch(Exception e)
    {
        System.out.println("Exception in Main");
    }
    finally
    {
        System.out.println("The end");
    }
  }
}
Select 2 correct options
a If run with no arguments, the program will only print 'The end'.
b If run with one argument, the program will only print 'The end'.
c If run with one argument, the program will print 'Exception in Main' and 'The end'.
d If run with one argument, the program will only print 'Exception in Main'.
e Only one of the above is correct.
Q11
class E1 extends Exception{ }
class E2 extends E1 { }
class Test
{
            public static void main(String[] args)
            {
                        try{
                                  throw new E2();
                        }
                        catch(E1 e){
                                  System.out.println("E1");
                        }
                        catch(Exception e){
                                  System.out.println("E");
                        }
                        finally{
                                  System.out.println("Finally");
                        }
            }
}
Select 1 correct option.
a It will not compile.
b It will print E1 and Finally.
c It will print E1, E and Finally.
d It will print E and Finally.
e It will print Finally.
Q12

What will be the output of the following program?
class TestClass
{
            public static void main(String[] args) throws Exception
            {
                         try{
                                    amethod();
                                    System.out.println("try");
                         }
                         catch(Exception e){
                                    System.out.println("catch");
                         }
                         finally    {
                                    System.out.println("finally");
                         }
                         System.out.println("out");
            }
            public static void amethod(){ }
}


Select 1 correct option.
a try finally
b try finally out
c try out
d catch finally out
e It will not compile because amethod() does not throw any exception.
Q13
class MyException extends Throwable{}
class MyException1 extends MyException{}
class MyException2 extends MyException{}
class MyException3 extends MyException2{}
public class ExceptionTest
{
                void myMethod() throws MyException
                {
                                  throw new MyException3();
                }
                public static void main(String[] args)
                {
                                  ExceptionTest et = new ExceptionTest();
                                  try
                                  {
                                                   et.myMethod();
                                  }
                                  catch(MyException me)
                                  {
                                                   System.out.println("MyException thrown");
                                  }
                                  catch(MyException3 me3)
                                  {
                                                   System.out.println("MyException3 thrown");
                                  }
                                  finally
                                  {
                                                   System.out.println(" Done");
                                  }
                }
}

Select 1 correct option.
a MyException thrown
b MyException3 thrown
c MyException thrown Done
d MyException3 thrown Done
e It fails to compile
Q14

What letters, and in what order, will be printed when the following program
is compiled and run?
public class FinallyTest
{
  public static void main(String args[]) throws Exception
  {
     try
     {
        m1();
        System.out.println("A");
     }
     finally
     {
        System.out.println("B");
     }
     System.out.println("C");
  }
  public static void m1() throws Exception { throw new Exception(); }
}
Select 1 correct option.
a It will print C and B, in that order.
b It will print A and B, in that order.
c It will print B and throw Exception.
d It will print A, B and C in that order.
e Compile time error.
Q15

What is wrong with the following code written in a single file named TestClass.java?

class SomeThrowable extends Throwable { }
class MyThrowable extends SomeThrowable { }
public class TestClass
{
  public static void main(String args[]) throws SomeThrowable
  {
    try{
       m1();
    }catch(SomeThrowable e){
       throw e;
    }finally{
       System.out.println("Done");
    }
  }
  public static void m1() throws MyThrowable
  {
    throw new MyThrowable();
  }
}

Select 2 correct options
a The main declares that it throws SomeThrowable but throws MyThrowable.
b You cannot have more than 2 classes in one file.
c The catch block in the main method must declare that it catches MyThrowable rather than
SomeThrowable
d There is nothing wrong with the code.
e 'Done' will be printed.

More Related Content

PPT
Java Threads
Kapish Joshi
 
PPT
Java language fundamentals
Kapish Joshi
 
PPT
Java Inheritance
Kapish Joshi
 
PPTX
Loop
prabhat kumar
 
PPTX
12. Java Exceptions and error handling
Intro C# Book
 
PDF
Writing beautiful code with Java 8
Sergiu Mircea Indrie
 
PDF
RMI Java Programming Lab Manual 2019
Gebreigziabher Ab
 
PPT
E:\Plp 2009 2\Plp 9
Ismar Silveira
 
Java Threads
Kapish Joshi
 
Java language fundamentals
Kapish Joshi
 
Java Inheritance
Kapish Joshi
 
12. Java Exceptions and error handling
Intro C# Book
 
Writing beautiful code with Java 8
Sergiu Mircea Indrie
 
RMI Java Programming Lab Manual 2019
Gebreigziabher Ab
 
E:\Plp 2009 2\Plp 9
Ismar Silveira
 

What's hot (20)

PDF
Test string and array
Nabeel Ahmed
 
DOCX
Import java
heni2121
 
DOCX
QA Auotmation Java programs,theory
archana singh
 
PPTX
Migrating to JUnit 5
Rafael Winterhalter
 
PPT
Inheritance and-polymorphism
Usama Malik
 
PPTX
Kotlin decompiled
Ruslan Klymenko
 
DOCX
Java practical
shweta-sharma99
 
DOC
Final JAVA Practical of BCA SEM-5.
Nishan Barot
 
DOCX
Java programs
Dr.M.Karthika parthasarathy
 
PDF
Mutation @ Spotify
STAMP Project
 
PDF
Java programs
Mukund Gandrakota
 
PPTX
SoCal Code Camp 2015: An introduction to Java 8
Chaitanya Ganoo
 
PPTX
Tools and Techniques for Understanding Threading Behavior in Android*
Intel® Software
 
PDF
Important java programs(collection+file)
Alok Kumar
 
PPTX
14 thread
Bayarkhuu
 
PDF
Data structure singly linked list programs VTU Exams
iCreateWorld
 
PDF
Fnt software solutions placement paper
fntsofttech
 
PPTX
Unit testing concurrent code
Rafael Winterhalter
 
PPT
Java concurrency begining
maksym220889
 
Test string and array
Nabeel Ahmed
 
Import java
heni2121
 
QA Auotmation Java programs,theory
archana singh
 
Migrating to JUnit 5
Rafael Winterhalter
 
Inheritance and-polymorphism
Usama Malik
 
Kotlin decompiled
Ruslan Klymenko
 
Java practical
shweta-sharma99
 
Final JAVA Practical of BCA SEM-5.
Nishan Barot
 
Mutation @ Spotify
STAMP Project
 
Java programs
Mukund Gandrakota
 
SoCal Code Camp 2015: An introduction to Java 8
Chaitanya Ganoo
 
Tools and Techniques for Understanding Threading Behavior in Android*
Intel® Software
 
Important java programs(collection+file)
Alok Kumar
 
14 thread
Bayarkhuu
 
Data structure singly linked list programs VTU Exams
iCreateWorld
 
Fnt software solutions placement paper
fntsofttech
 
Unit testing concurrent code
Rafael Winterhalter
 
Java concurrency begining
maksym220889
 
Ad

Similar to Exception handling (20)

PPT
Comp102 lec 10
Fraz Bakhsh
 
PPT
Exceptions
notshoaib
 
PDF
Scjp6.0
prabhatkgupta
 
PPT
Keywords for exceptions.44
myrajendra
 
DOCX
What is an exception in java?
Pramod Yadav
 
DOC
MX Server is my friend
Gabriel Daty
 
DOC
MX Server is my friend
Gabriel Daty
 
DOC
MX Server is my friend
Gabriel Daty
 
DOC
MX Server is my friend
Gabriel Daty
 
DOCX
Unit5 java
mrecedu
 
PPT
Cso gaddis java_chapter12
mlrbrown
 
PPT
10 exceptionsin java
APU
 
PPTX
Java 104
Manuela Grindei
 
DOCX
Simulado java se 7 programmer
Miguel Vilaca
 
PPT
Java API, Exceptions and IO
Jussi Pohjolainen
 
PDF
Java, Up to Date Sources
輝 子安
 
PPTX
Exceptions and errors in Java
Manuela Grindei
 
PPTX
Unit II Java & J2EE regarding Java application development
rohitgudasi18
 
PPTX
Pi j4.2 software-reliability
mcollison
 
PDF
Evaluation of Exception Handling Metrics
IJASCSE
 
Comp102 lec 10
Fraz Bakhsh
 
Exceptions
notshoaib
 
Scjp6.0
prabhatkgupta
 
Keywords for exceptions.44
myrajendra
 
What is an exception in java?
Pramod Yadav
 
MX Server is my friend
Gabriel Daty
 
MX Server is my friend
Gabriel Daty
 
MX Server is my friend
Gabriel Daty
 
MX Server is my friend
Gabriel Daty
 
Unit5 java
mrecedu
 
Cso gaddis java_chapter12
mlrbrown
 
10 exceptionsin java
APU
 
Java 104
Manuela Grindei
 
Simulado java se 7 programmer
Miguel Vilaca
 
Java API, Exceptions and IO
Jussi Pohjolainen
 
Java, Up to Date Sources
輝 子安
 
Exceptions and errors in Java
Manuela Grindei
 
Unit II Java & J2EE regarding Java application development
rohitgudasi18
 
Pi j4.2 software-reliability
mcollison
 
Evaluation of Exception Handling Metrics
IJASCSE
 
Ad

Recently uploaded (20)

PPTX
Information Texts_Infographic on Forgetting Curve.pptx
Tata Sevilla
 
PPTX
Tips Management in Odoo 18 POS - Odoo Slides
Celine George
 
PPTX
Artificial-Intelligence-in-Drug-Discovery by R D Jawarkar.pptx
Rahul Jawarkar
 
PPTX
CARE OF UNCONSCIOUS PATIENTS .pptx
AneetaSharma15
 
DOCX
pgdei-UNIT -V Neurological Disorders & developmental disabilities
JELLA VISHNU DURGA PRASAD
 
PPTX
Five Point Someone – Chetan Bhagat | Book Summary & Analysis by Bhupesh Kushwaha
Bhupesh Kushwaha
 
PDF
Health-The-Ultimate-Treasure (1).pdf/8th class science curiosity /samyans edu...
Sandeep Swamy
 
PPTX
Dakar Framework Education For All- 2000(Act)
santoshmohalik1
 
PPTX
Introduction to pediatric nursing in 5th Sem..pptx
AneetaSharma15
 
PPTX
20250924 Navigating the Future: How to tell the difference between an emergen...
McGuinness Institute
 
PPTX
An introduction to Prepositions for beginners.pptx
drsiddhantnagine
 
PDF
Biological Classification Class 11th NCERT CBSE NEET.pdf
NehaRohtagi1
 
PDF
Antianginal agents, Definition, Classification, MOA.pdf
Prerana Jadhav
 
PPTX
CDH. pptx
AneetaSharma15
 
PPTX
HEALTH CARE DELIVERY SYSTEM - UNIT 2 - GNM 3RD YEAR.pptx
Priyanshu Anand
 
PDF
Review of Related Literature & Studies.pdf
Thelma Villaflores
 
PDF
The Minister of Tourism, Culture and Creative Arts, Abla Dzifa Gomashie has e...
nservice241
 
PPTX
How to Close Subscription in Odoo 18 - Odoo Slides
Celine George
 
PDF
2.Reshaping-Indias-Political-Map.ppt/pdf/8th class social science Exploring S...
Sandeep Swamy
 
PPTX
How to Apply for a Job From Odoo 18 Website
Celine George
 
Information Texts_Infographic on Forgetting Curve.pptx
Tata Sevilla
 
Tips Management in Odoo 18 POS - Odoo Slides
Celine George
 
Artificial-Intelligence-in-Drug-Discovery by R D Jawarkar.pptx
Rahul Jawarkar
 
CARE OF UNCONSCIOUS PATIENTS .pptx
AneetaSharma15
 
pgdei-UNIT -V Neurological Disorders & developmental disabilities
JELLA VISHNU DURGA PRASAD
 
Five Point Someone – Chetan Bhagat | Book Summary & Analysis by Bhupesh Kushwaha
Bhupesh Kushwaha
 
Health-The-Ultimate-Treasure (1).pdf/8th class science curiosity /samyans edu...
Sandeep Swamy
 
Dakar Framework Education For All- 2000(Act)
santoshmohalik1
 
Introduction to pediatric nursing in 5th Sem..pptx
AneetaSharma15
 
20250924 Navigating the Future: How to tell the difference between an emergen...
McGuinness Institute
 
An introduction to Prepositions for beginners.pptx
drsiddhantnagine
 
Biological Classification Class 11th NCERT CBSE NEET.pdf
NehaRohtagi1
 
Antianginal agents, Definition, Classification, MOA.pdf
Prerana Jadhav
 
CDH. pptx
AneetaSharma15
 
HEALTH CARE DELIVERY SYSTEM - UNIT 2 - GNM 3RD YEAR.pptx
Priyanshu Anand
 
Review of Related Literature & Studies.pdf
Thelma Villaflores
 
The Minister of Tourism, Culture and Creative Arts, Abla Dzifa Gomashie has e...
nservice241
 
How to Close Subscription in Odoo 18 - Odoo Slides
Celine George
 
2.Reshaping-Indias-Political-Map.ppt/pdf/8th class social science Exploring S...
Sandeep Swamy
 
How to Apply for a Job From Odoo 18 Website
Celine George
 

Exception handling

  • 1. Exception Handling Duration 30 min.
  • 2. Q1 What will the following code print when run? public class Test { static String j = ""; public static void method( int i) { try { if(i == 2) { throw new Exception(); } j += "1"; } catch (Exception e) { j += "2"; return; } finally { j += "3"; } j += "4"; } public static void main(String args[]) { method(1); method(2); System.out.println(j); } } Select 1 correct option. a 13432 b 13423 c 14324 d 12434 e 12342
  • 3. Q2 Which digits, and in which order, will be printed when the following program is run? public class TestClass { public static void main(String args[]) { int k = 0; try{ int i = 5/k; } catch (ArithmeticException e){ System.out.println("1"); } catch (RuntimeException e){ System.out.println("2"); return ; } catch (Exception e){ System.out.println("3"); } finally{ System.out.println("4"); } System.out.println("5"); } } Select 1 correct option. a The program will print 5. b The program will print 1 and 4, in that order. c The program will print 1, 2 and 4, in that order. d The program will print 1, 4 and 5, in that order. e The program will print 1,2, 4 and 5, in that order.
  • 4. Q3 What class of objects can be declared by the throws clause? Select 3 correct options a Exception b Error c Event d Object e RuntimeException
  • 5. Q4 public class TestClass { class MyException extends Exception {} public void myMethod() throws XXXX { throw new MyException(); } } What should replace XXXX? Select 3 correct options a MyException b Exception c No throws clause is necessary d Throwable e RuntimeException
  • 6. Q5 What will the following code print when run? public class Test { static String s = ""; public static void m0(int a, int b) { s +=a; m2(); m1(b); } public static void m1(int i) { s += i; } public static void m2() { throw new NullPointerException("aa"); } public static void m() { m0(1, 2); m1(3); } public static void main(String args[]) { try { m(); } catch(Exception e){ } System.out.println(s); } } a 1 b 12 c 123 d 2 e It will throw exception at runtime.
  • 7. Q6 What will be the output of the following class... class Test { public static void main(String[] args) { int j = 1; try { int i = doIt() / (j = 2); } catch (Exception e) { System.out.println(" j = " + j); } } public static int doIt() throws Exception { throw new Exception("FORGET IT"); } } Select 1 correct option. a It will print j = 1; b It will print j = 2; c The value of j cannot be determined. d It will not compile. e None of the above.
  • 8. Q7 What will be the result of compiling and running the following program ? class NewException extends Exception {} class AnotherException extends Exception {} public class ExceptionTest { public static void main(String[] args) throws Exception { try { m2(); } finally { m3(); } catch (NewException e){} } public static void m2() throws NewException { throw new NewException(); } public static void m3() throws AnotherException{ throw new AnotherException(); } } Select 1 correct option. a It will compile but will throw AnotherException when run. b It will compile but will throw NewException when run. c It will compile and run without throwing any exceptions. d It will not compile. e None of the above.
  • 9. Q8 class NewException extends Exception {} class AnotherException extends Exception {} public class ExcceptionTest { public static void main(String [] args) throws Exception { try { m2(); } finally{ m3(); } } public static void m2() throws NewException{ throw new NewException(); } public static void m3() throws AnotherException{ throw new AnotherException(); } } Select 1 correct option. a It will compile but will throw AnotherException when run. b It will compile but will throw NewException when run. c It will compile and run without throwing any exceptions. d It will not compile. e None of the above.
  • 10. Q9 What will be the result of attempting to compile and run the following program? public class TestClass { public static void main(String args[]) { try { ArithmeticException re=null; throw re; } catch(Exception e) { System.out.println(e); } } } Select 1 Correct option a. The code will fail to compile, since RuntimeException cannot be caught by catching an Exception. b. The program will fail to compile, since re is null. c. The program will compile without error and will print java.lang.RuntimeException when run. d. The program will compile without error and will print java.lang.NullPointerException when run. e. The program will compile without error and will run and print 'null'.
  • 11. Q10 Given the following program, which of these statements are true? public class FinallyTest { public static void main(String args[]) { try { if (args.length == 0) return; else throw new Exception("Some Exception"); } catch(Exception e) { System.out.println("Exception in Main"); } finally { System.out.println("The end"); } } } Select 2 correct options a If run with no arguments, the program will only print 'The end'. b If run with one argument, the program will only print 'The end'. c If run with one argument, the program will print 'Exception in Main' and 'The end'. d If run with one argument, the program will only print 'Exception in Main'. e Only one of the above is correct.
  • 12. Q11 class E1 extends Exception{ } class E2 extends E1 { } class Test { public static void main(String[] args) { try{ throw new E2(); } catch(E1 e){ System.out.println("E1"); } catch(Exception e){ System.out.println("E"); } finally{ System.out.println("Finally"); } } } Select 1 correct option. a It will not compile. b It will print E1 and Finally. c It will print E1, E and Finally. d It will print E and Finally. e It will print Finally.
  • 13. Q12 What will be the output of the following program? class TestClass { public static void main(String[] args) throws Exception { try{ amethod(); System.out.println("try"); } catch(Exception e){ System.out.println("catch"); } finally { System.out.println("finally"); } System.out.println("out"); } public static void amethod(){ } } Select 1 correct option. a try finally b try finally out c try out d catch finally out e It will not compile because amethod() does not throw any exception.
  • 14. Q13 class MyException extends Throwable{} class MyException1 extends MyException{} class MyException2 extends MyException{} class MyException3 extends MyException2{} public class ExceptionTest { void myMethod() throws MyException { throw new MyException3(); } public static void main(String[] args) { ExceptionTest et = new ExceptionTest(); try { et.myMethod(); } catch(MyException me) { System.out.println("MyException thrown"); } catch(MyException3 me3) { System.out.println("MyException3 thrown"); } finally { System.out.println(" Done"); } } } Select 1 correct option. a MyException thrown b MyException3 thrown c MyException thrown Done d MyException3 thrown Done e It fails to compile
  • 15. Q14 What letters, and in what order, will be printed when the following program is compiled and run? public class FinallyTest { public static void main(String args[]) throws Exception { try { m1(); System.out.println("A"); } finally { System.out.println("B"); } System.out.println("C"); } public static void m1() throws Exception { throw new Exception(); } } Select 1 correct option. a It will print C and B, in that order. b It will print A and B, in that order. c It will print B and throw Exception. d It will print A, B and C in that order. e Compile time error.
  • 16. Q15 What is wrong with the following code written in a single file named TestClass.java? class SomeThrowable extends Throwable { } class MyThrowable extends SomeThrowable { } public class TestClass { public static void main(String args[]) throws SomeThrowable { try{ m1(); }catch(SomeThrowable e){ throw e; }finally{ System.out.println("Done"); } } public static void m1() throws MyThrowable { throw new MyThrowable(); } } Select 2 correct options a The main declares that it throws SomeThrowable but throws MyThrowable. b You cannot have more than 2 classes in one file. c The catch block in the main method must declare that it catches MyThrowable rather than SomeThrowable d There is nothing wrong with the code. e 'Done' will be printed.