Question:

Which of the following are used in python exception handling?
Options:
A) try
B) except
C) finally
D) seek
Choose the correct answer from the options given below:

Updated On: Mar 29, 2025
  • (A), (B), and (D) only
  • (A), (B), and (C) only
  • (A), (B), (C), and (D)
  • (B), (C), and (D) only
Hide Solution
collegedunia
Verified By Collegedunia

The Correct Option is B

Solution and Explanation

Python uses try, except, and finally for structured exception handling. 
The seek() method is unrelated, as it is used for file operations.

Exception handling in Python is used to manage runtime errors gracefully. 

  • try: Encloses code that might raise an exception.
  • except: Catches and handles exceptions.
  • finally: Executes cleanup code, regardless of whether an exception occurred.
OptionPurposeRelevance to Exception Handling
A) tryDefines a block where exceptions may occur.Core part of exception handling.
B) exceptCatches and processes exceptions.Essential for handling errors.
C) finallyEnsures execution of code after try/except.Used for cleanup (e.g., closing files).
D) seekMoves the file pointer in file operations.Not related to exceptions; used in file handling.
  • The correct combination is (A), (B), and (C).
Was this answer helpful?
0
0