error handling Flashcards

1
Q

What is the base class for all exceptions in Python?

A

BaseException

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

What is the difference between BaseException and Exception?

A

BaseException is the top-level class for all exceptions (including system-exiting ones like SystemExit and KeyboardInterrupt). Exception is the base class for most non-fatal errors.

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

What does the try block do?

A

It contains code that might raise an exception.

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

What does an except block do?

A

It catches and handles a specific type of exception.

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

Can a try block have multiple except clauses?

A

Yes, a try block can have multiple except clauses for different exception types.

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

How do you catch multiple exceptions in a single except clause?

A

Use a tuple, e.g.: except (ValueError, TypeError):

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

What does except Exception as e: do?

A

It catches all exceptions that inherit from Exception. e stores the exception instance for further inspection.

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

What is the purpose of the else block in a try-except-else structure?

A

It runs only if no exception occurs in the try block.

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

What is the purpose of the finally block?

A

It always executes, whether or not an exception occurs.

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

When should you use a finally block?

A

To release resources (e.g., closing a file or database connection). To ensure cleanup, even if an exception occurs.

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

What happens if an exception is not caught by any except block?

A

The program crashes, and Python prints a traceback.

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

What happens if you raise an exception inside an except block?

A

The exception propagates further up the stack. If there’s no try-except higher up, the program crashes.

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

How do you manually raise an exception?

A

Use the raise keyword: raise ValueError(“Invalid input!”)

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

What does raise (without an exception type) do inside an except block?

A

It re-raises the caught exception.

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

What does assert do in Python?

A

It checks a condition and raises an AssertionError if false.

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

What happens if you place an except block for a parent exception before a child exception?

A

The parent catches everything first, so the child exception block never executes. Always put more specific exceptions before general ones.

17
Q

How do you define a custom exception in Python?

A

Create a subclass of Exception: class MyError(Exception): pass

18
Q

How do you access the message inside an exception?

A

Use .args or str(exception), e.g.: try: raise ValueError(“Something went wrong!”) except ValueError as e: print(e.args[0])

19
Q

What is the difference between try-except and if-else for error handling?

A

try-except is for handling runtime errors (exceptions). if-else is for preventing errors before they occur.

20
Q

What happens if a finally block contains return?

A

The finally block overrides any previous return statement.