Multiple Choice
Which of the following statements is false
A) Prior to C# 6, you could catch an exception based only on its type.
B) C# 6's exception filters enable you to catch an exception based on a catch's exception type and a condition that's specified with a when clause.
C) You also can specify an exception filter for a general catch clause that does not provide an exception type.
D) If an exception filter's condition is false, the exception will not be caught and the original exception's stack-trace information will be deleted.
Correct Answer:

Verified
Correct Answer:
Verified
Q8: Which of the following statements about try
Q12: Which of the following is not included
Q26: In order to tell the user what
Q27: After the last catch block,the required finally
Q29: A FormatException is used to handle:<br>A) extra
Q30: Variables local to a try block are
Q32: After a finally block has finished executing:<br>A)control
Q34: Resource de-allocation should be done explicitly in
Q35: By convention,the name of each user-defined exception
Q36: C# does not guarantee that a finally