Chapter 11 - Exceptions and Localization Flashcards

1
Q

Supporting localization means you must immediately support specific languages. If false, why?

A

False. Localization support can be built early without implementing specific languages right away.

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

An exception is an event that alters program flow. If false, why?

A

True

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

All Java exceptions have “Exception” in their class name. If false, why?

A

False. Some exceptions, like Error and Throwable, do not include “Exception” in their name.

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

A checked exception must be declared or handled where it is thrown. If false, why?

A

True

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

Checked exceptions inherit Exception but not RuntimeException. If false, why?

A

True

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

Checked exceptions include all classes that inherit Throwable. If false, why?

A

False. Only classes that extend Exception but not Error or RuntimeException are checked exceptions.

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

The handle or declare rule applies to all exceptions. If false, why?

A

False. It only applies to checked exceptions, not unchecked exceptions like RuntimeException.

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

The throw keyword declares that a method might throw an exception. If false, why?

A

False. throw is used to actually throw an exception, while throws declares it in a method signature.

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

Checked exceptions require handling because they are usually anticipated. If false, why?

A

True

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

A catch block that catches Exception can handle IOException. If false, why?

A

True

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

A runtime exception is a subclass of RuntimeException and tends to be unexpected but not necessarily fatal.

A

True

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

An unchecked exception does not need to be declared or handled by the application code where it is thrown.

A

True

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

Errors indicate severe problems that a program should not attempt to recover from.

A

True

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

Throwable is the parent class of all exceptions, including both checked and unchecked exceptions.

A

True

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

The throw keyword is used to throw a new exception or rethrow an existing one inside a code block.

A

True

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

The throws keyword is used at the end of a method declaration to indicate what exceptions a method can throw.

A

True

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

An unchecked exception must be handled by the program.

A

No, handling is optional.)

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

Errors are checked exceptions that must be declared or handled.

A

(Errors are not checked exceptions and should not be handled.)

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

Throwable should always be caught directly in application code.

A

It is not recommended to catch Throwable directly.

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

A checked exception is a subclass of RuntimeException.

A

Checked exceptions are subclasses of Exception but not of RuntimeException.

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

The throw keyword is used at the method declaration to indicate possible exceptions.

A

No, that’s the throws keyword.

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

A program is required to handle or declare all exceptions.

A

Only checked exceptions must be handled or declared.)

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

Errors are typically recoverable in Java applications.

A

Errors represent serious issues that should not be recovered from.

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

RuntimeException is a checked exception.

A

No, it is an unchecked exception.

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

The throws keyword is used inside a method body to throw an exception.

A

(No, the throw keyword is used for that.)

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

An exception cannot be stored in an object reference.

A

No, an exception is an object and can be stored in a reference.

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

Any Java code can throw an exception, including both user-written and built-in Java code.

A

True

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

An ArrayIndexOutOfBoundsException occurs at compile time when accessing an invalid array index.

A

(Correction: It occurs at runtime, not compile time.)

28
Q

The throw keyword is used in a method declaration to specify what exceptions a method can throw.

A

(Correction: The throws keyword is used for that, not throw.)

29
Q

The throw keyword is used inside a code block to throw an exception.

30
Q

Java automatically throws an exception if a method contains the word throw anywhere in its body.

A

(Correction: The throw statement must be explicitly executed.)

31
Q

A method must always specify throws when using throw inside it.

A

(Correction: Only checked exceptions require throws, not unchecked exceptions.)

32
Q

An exception is an object in Java, meaning it can be stored in a variable.

33
Q

You can throw an exception without using the new keyword.

A

(Correction: The exception must be instantiated with new.)

34
Q

throw new RuntimeException(“Error message”); is a valid statement in Java.

35
Q

The compiler ignores unreachable code errors caused by exceptions.

A

(Correction: The compiler reports an error for unreachable code.)

36
Q

throw RuntimeException(); is valid Java syntax.

A

(Correction: It must be throw new RuntimeException();.)

37
Q

A method can throw an exception that was passed into it as a parameter.

38
Q

A method marked with throws must handle the exception inside the method.

A

(Correction: The method does not need to handle it; it delegates handling to the caller.)

39
Q

If a try block throws an exception, all lines after it in the try block will still execute.

A

(Correction: Execution jumps to the catch block, skipping remaining try statements.)

40
Q

Java allows multiple throw statements on consecutive lines in a try block.

A

(Correction: The second throw statement would be unreachable if the first always executes.)

41
Q

Java enforces a default message for all exception objects if none is provided.

A

(Correction: Some exceptions may have null messages if none is set.)

42
Q

A throws clause is required for all exceptions in Java.

A

(Correction: Only checked exceptions require throws; runtime exceptions do not.)

43
Q

A try block is mandatory when using the throw keyword.

A

(Correction: A throw statement can exist without a try block, but it may cause an uncaught exception.)

44
Q

What is AutoCloseable?

A

✔ AutoCloseable is an interface for objects that hold resources (e.g., files, sockets).
✔ Ensures resources are automatically closed when used in a try-with-resources block.
✔ Introduced in Java 7.

45
Q

How does AutoCloseable work?

A

✔ Declaring an AutoCloseable object in a try-with-resources block ensures its close() method is called automatically.

46
Q

Why use AutoCloseable?

A

✔ Prevents resource leaks (e.g., unclosed files, sockets, database connections).
✔ Avoids manual cleanup using finally blocks.
✔ Improves code readability and maintainability.

47
Q

What is the difference between AutoCloseable and Closeable?

A

✔ Closeable (from java.io) is specific to I/O resources.
✔ AutoCloseable is more general, allowing any resource to be closed.
✔ AutoCloseable.close() can throw any exception, while Closeable.close() only throws IOException.

48
Q

When should you NOT use try-with-resources?

A

✔ When working with non-I/O-based resources (e.g., Stream operations).
✔ If the resource does not actually require cleanup.

49
Q

Why is close() called before catch?

A

✔ In a try-with-resources block, resources declared in the header are closed before handling exceptions.
✔ This ensures proper resource cleanup before exception handling begins.

50
Q

How does Java ensure close() runs first?

A

✔ The Java compiler automatically inserts a finally block to close the resource before the catch block runs.
✅ This guarantees proper cleanup, preventing resource leaks.

51
Q

What happens if close() itself throws an exception?

A

✔ If close() throws an exception, it is suppressed and attached to the original exception.
✔ You can retrieve suppressed exceptions using Throwable.getSuppressed().

52
Q

In what order are resources closed in try-with-resources?

A

✔ Resources are closed in the reverse order of their creation.

53
Q

Are resources always closed, even if an exception occurs?

A

✔ Yes! Resources are always closed, even if an exception is thrown.

54
Q

When are catch and finally blocks executed?

A

✔ catch and finally blocks execute after resources are closed.

try (MyResource res = new MyResource()) {
throw new RuntimeException(“Error!”);
} catch (Exception e) {
System.out.println(“Caught: “ + e.getMessage());
}

✅ First res.close(), then catch executes.

55
Q

What happens if an exception is thrown in catch or finally?

A

✔ It does not prevent resources from being closed.

56
Q

Do resources close before finally executes?

A

✔ Yes, resources close before finally executes.

57
Q

What must be true about a checked exception declared inside a catch block?

A

The associated try block must be capable of throwing that exception or a subclass; otherwise, the code is unreachable and does not compile.

58
Q

Does the rule about checked exceptions in a catch block apply to unchecked exceptions?

A

No, the rule applies only to checked exceptions, not to unchecked exceptions or exceptions declared in a method signature.

59
Q

What is the rule for overriding methods with checked exceptions?

A

An overridden method may not declare any new or broader checked exceptions than the method it inherits.

60
Q

What are the three ways to print an exception in Java?

A
  1. Print the exception object (System.out.println(e)).
  2. Print just the message (System.out.println(e.getMessage())).
  3. Print the stack trace (e.printStackTrace()).
61
Q

Why is the stack trace the most helpful way to print an exception?

A

It shows the hierarchy of method calls that led to the exception, making it easier to debug the issue.

62
Q

What are the three main groups of exceptions in Java?

A
  1. RuntimeException (unchecked exceptions)
  2. Checked exceptions
  3. Error
63
Q

What is a RuntimeException in Java?

A

It is an unchecked exception that does not need to be declared or handled explicitly.

64
Q

When is an ArithmeticException thrown?

A

When code attempts to divide by zero.

65
Q

When is an ArrayIndexOutOfBoundsException thrown?

A

When code tries to access an array using an illegal index.

66
Q

When is a NullPointerException thrown?

A

When a null reference is used where an object is required.

67
Q

When is an IllegalArgumentException typically thrown?

A

When a method is passed an illegal or inappropriate argument.

68
Q

What is NumberFormatException, and what causes it?

A

It is a subclass of IllegalArgumentException, thrown when trying to convert a String to a numeric type but the format is incorrect.