Exceptions Flashcards

1
Q

What are the two types of errors that can occur in programs?

A
  • Compile-time errors
  • Run-time errors
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How can a program handle exceptions?

A
  • Ignore it
  • Handle it where it occurs
  • Handle it in another place in the program
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What happens if an exception is ignored by the program?

A

The program will terminate abnormally and produce an appropriate message.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is an ArrayIndexOutOfBoundsException?

A

An exception that occurs when trying to access an array element that is out of its bounds.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the hierarchy of exceptions in Java?

A
  • java.lang.Exception
  • java.lang.Throwable
  • java.lang.Error
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What are the two main subclasses of the Exception class?

A
  • IOException class
  • RuntimeException class
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Which keyword is used to catch exceptions in Java?

A

catch

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What do you call the code inside a try block?

A

Protected code

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What follows a try block in exception handling?

A

Either a catch block or a finally block.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is the purpose of a finally block?

A

To execute cleanup-type statements regardless of whether an exception occurred.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

True or False: A try block can exist without a catch block.

A

False

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What does exception propagation mean?

A

An exception can be handled at a higher level if it is not appropriate to handle it where it occurs.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What keyword is used to explicitly throw an exception in Java?

A

throw

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What type of exception is thrown when a division by zero occurs?

A

ArithmeticException

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Fill in the blank: The practice of isolating exceptional situations is called _______.

A

exception handling

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is the outcome if no catch block matches the thrown exception?

A

The exception is thrown up to the previous method on the call stack.

17
Q

What happens in the following code: int num[] = {1, 2, 3, 4}; System.out.println(num[5]);?

A

An ArrayIndexOutOfBoundsException occurs.

18
Q

What is the significance of the catch statement?

A

It declares the type of exception being caught.

19
Q

What happens when an exception occurs in the try block?

A

The catch block associated with the exception type is executed.

20
Q

Can a try block have multiple catch blocks?

21
Q

What will always execute after a try block, regardless of exceptions?

A

The finally block

22
Q

What types of exceptions can be caught in a catch block?

A
  • Specific exception types (e.g., ArithmeticException)
  • General exception type (e.g., Exception)
23
Q

What happens to the program flow if an exception is thrown and not caught?

A

The current method stops execution and the exception is thrown down to the previous method.