C#L10 Flashcards

1
Q

What is an exception?

A

An error that disrupts normal program execution.

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

What is the purpose of exception handling?

A

To catch and handle errors without crashing the program.

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

Name a common exception that occurs when dividing by zero.

A

DivideByZeroException.

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

Which keyword is used to catch exceptions?

A

catch.

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

What does the finally block do?

A

Ensures code runs regardless of an exception.

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

How do you manually throw an exception?

A

Using the throw keyword.

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

What exception occurs when accessing an uninitialized object?

A

NullReferenceException.

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

What is the correct syntax for a try-catch block?

A

try { } catch (Exception ex) { }.

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

What happens if an exception is not caught?

A

The program crashes.

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

What is the base class for all exceptions in C#?

A

System.Exception.

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

Which exception occurs when an index is out of range?

A

IndexOutOfRangeException.

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

What exception occurs if a string cannot be converted to a number?

A

FormatException.

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

What is exception propagation?

A

When an exception moves up the call stack if not handled.

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

Can a try block exist without a catch block?

A

Yes, if a finally block is present.

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

How can multiple exceptions be handled separately?

A

By using multiple catch blocks.

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