• 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/7

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;

7 Cards in this Set

  • Front
  • Back
A method is said to _________ an exception when that method detects that a problem has occurred.
throw
When present, the _________ block associated with a try block always executes.
finally
Exception classes are derived from class ________ .
Exception
The statement that throws an exception is called _________ the of the exception.
throw point
C# uses the _________ model of exception handling as opposed to the _________ model of exception handling.
termination, resumption
An uncaught exception in a method causes the method to _________ from the method-call stack.
unwind
Method Convert.ToInt32 can throw a(n) _________ exception if its argument is not a valid integer value.
FormatException