English

Define the following: Exception Handling - Computer Science (Python)

Advertisements
Advertisements

Question

Define the following:

Exception Handling

Short Note

Solution

Writing additional code in a program to give proper messages or instructions to the user on encountering an exception, called exception handling.

try:
   statements
except Exception_Name:
   statements for handling exception
shaalaa.com
Handling Exceptions
  Is there an error in this question or solution?
Chapter 1: Exception Handling in Python - Exercise [Page 17]

APPEARS IN

NCERT Computer Science [English] Class 12
Chapter 1 Exception Handling in Python
Exercise | Q 5. a) | Page 17

RELATED QUESTIONS

How many except statements can a try-except block have?


When will the else part of try-except-else be executed?


Can one block of except statements handle multiple exceptions?


Which of the following blocks lets you test a block of code for errors?   


Which of the following is true for Exceptions:

  1. Exceptions disrupt normal flow of the program
  2. It is common for exceptions to show up before the program is executed
  3. Runtime errors are known as Exceptions
  4. Exception is a Python object that represents an error

What is not true for exception handling?


In exception handling, what keeps track of exact position where error has occurred?


While executing the program, if an exception is encountered in try block then execution of the code inside the try block is stopped and:


The else part of try-except-else executes:


Define the following:

Throwing an exception


Define the following:

Catching an exception


Explain catching exceptions using try and except block.


You have learnt how to use math module in Class XI. Write a code where you use the wrong number of arguments for a method (say sqrt() or pow()). Use the exception handling process to catch the ValueError exception.


Predict the output of the Python code given below:

def Diff(N1,N2):
 if N1>N2:
 return N1-N2
 else:
 return N2-N1

NUM= [10,23,14,54,32]
for CNT in range (4,0,-1):
 A=NUM[CNT]
 B=NUM[CNT-1]
 print(Diff(A,B),'#', end=' ')

“In a Python program, if a break statement is given in a nested loop, it terminates the execution of all loops in one go.”


Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×