java quiz on exception handling

java quiz on exception handling

University

20 Qs

quiz-placeholder

Similar activities

Round 2 for Preplacement Bootcamp

Round 2 for Preplacement Bootcamp

University

15 Qs

IT 101 - Quiz 3

IT 101 - Quiz 3

University

20 Qs

DWDM Unit1 Quiz

DWDM Unit1 Quiz

University

21 Qs

COA_QUIZ_UNIT I

COA_QUIZ_UNIT I

University

20 Qs

CPA MS-Office Hotkeys Quiz

CPA MS-Office Hotkeys Quiz

8th Grade - Professional Development

21 Qs

Informatika Kelas 5 Bab 2

Informatika Kelas 5 Bab 2

5th Grade - University

19 Qs

Quiz on Misinformation and Bias

Quiz on Misinformation and Bias

10th Grade - University

18 Qs

ระบบปฏิบัติการ ชุดที่ 1

ระบบปฏิบัติการ ชุดที่ 1

University

15 Qs

java quiz on exception handling

java quiz on exception handling

Assessment

Quiz

Computers

University

Practice Problem

Hard

Created by

Anupam Yadav

Used 270+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

20 questions

Show all answers

1.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

Which of these keywords is not a part of exception handling?

try

finally

thrown

catch

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

public class Foo

{

public static void main(String[] args)

{

try

{

return;

}

finally

{

System.out.println( "Finally" );

}

}

}

Finally

Compilation fails.

The code runs with no output

An exception is thrown at runtime.

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What will be the output of the program?

try

{

int x = 0;

int y = 5 / x;

}

catch (Exception e)

{

System.out.println("Exception");

}

catch (ArithmeticException ae)

{

System.out.println(" Arithmetic Exception");

}

System.out.println("finished");

finished

runtime error.

Compilation fails

Exception.

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

public class X

{

public static void main(String [] args)

{

try

{

badMethod();

System.out.print("A");

}

catch (Exception ex)

{

System.out.print("B");

}

finally

{

System.out.print("C");

}

System.out.print("D");

}

public static void badMethod()

{

throw new Error(); /* Line 22 */

}

}

ABCD

Compilation fails.

C is printed before exiting with an error message.

BC is printed before exiting with an error message

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

public class X

{

public static void main(String [] args)

{

try

{

badMethod();

System.out.print("A");

}

catch (RuntimeException ex) /* Line 10 */

{

System.out.print("B");

}

catch (Exception ex1)

{

System.out.print("C");

}

finally

{

System.out.print("D");

}

System.out.print("E");

}

public static void badMethod()

{

throw new RuntimeException();

}

}

BD

BDE

BD

DE

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

java.lang.NullPointerException is a

Error

runtime exception

Compile time exception

None

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

FileNotFoundException

Is a subclass/extends IOException

Is a Compile time exception

Found in java.io package

All

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?