हिंदी

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

Advertisements
Advertisements

प्रश्न

Define the following:

Exception Handling

टिप्पणी लिखिए

उत्तर

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
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 1: Exception Handling in Python - Exercise [पृष्ठ १७]

APPEARS IN

एनसीईआरटी Computer Science [English] Class 12
अध्याय 1 Exception Handling in Python
Exercise | Q 5. a) | पृष्ठ १७

संबंधित प्रश्न

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×