• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/15

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

15 Cards in this Set

  • Front
  • Back

An __ is an object that defines an unusual or erroneous situation that is typically recoverable

Exception

An __ is an object that defines an erroneous situation from which the program usually cannot recover

Error

A ___ can be used to find the exact link where an exception was thrown during program execution

Call-stack trace

A __ is used to identify a block of statements that may cause an exception

Try-block

A __ is used to specify how certain exceptions should be handled

Catch block

Every line of a __ is executed no matter what exceptions are thrown.

Finally block

If an exception is not caught, a program will ___

Terminate abnormally

The exception class and error class are subclasses of the ___ class

Throwable

The __ statement is used to begin exception propogation

Throw

A ___ is an ordered sequence of bytes

Stream

___ represents the standard input stream

Systems.in

___ file streams should be explicitly closed to ensure that written data is properly retained

Output

__ exceptions must always be caught unless they are contained in methods that throw them in the method header

checked

Is Runtimeexception checked or unchecked

Unchecked

The __ method is part of the exception class and can be used to give information about a thrown exception

PprintStackTrace