Chapter 6: Exceptions and Assertions Flashcards

1
Q

Exception thrown by the JVM when code attempts to divide by zero.

A

ArithmeticException

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

Exception Thrown by the JVM when code uses an illegal index to access an array.

A

ArrayIndexOutOfBoundsException

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

Exception Thrown by the JVM when an attempt is made to cast an object to a subclass of which it is not an instance.

A

ClassCastException

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

Exception Thrown by the program to indicate that a method has been passed an illegal or inappropriate argument.

A

IllegalArgumentException

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

Exception Thrown by the JVM when there is a null reference where an object is required.

A

NullPointerException

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

Exception Thrown by the program when an attempt is made to convert a string to a numeric type, but the string doesn’t have an appropriate format.

A

NumberFormatException

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

java.text.ParseException Checked or Unchecked?

A

Checked

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

java.io.IOException java.io.FileNotFound Exception java.io.NotSerializable Exception. Checked or Unchecked?

A

Checked

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

java.sql.SQLException. Checked or Unchecked?

A

Checked

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

java.lang.ArrayStoreException. Checked or Unchecked?

A

Unchecked

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

java.time.DateTimeException. Checked or Unchecked?

A

Unchecked

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

java.util.MissingResourceException. Checked or Unchecked?

A

Unchecked

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

java.lang.IllegalStateException java.lang.UnsupportedOperationException. Checked or Unchecked?

A

Unchecked

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