Advertisements
Online Mock Tests
Chapters
2: File Handling in Python
3: Stack
4: Queue
5: Sorting
6: Searching
7: Understanding Data
8: Database Concepts
9: Structured Query Language (SQL)
10: Computer Networks
11: Data Communication
12: Security Aspects
Chapter 13: Project Based Learning
![NCERT solutions for Computer Science [English] Class 12 chapter 1 - Exception Handling in Python NCERT solutions for Computer Science [English] Class 12 chapter 1 - Exception Handling in Python - Shaalaa.com](/images/computer-science-english-class-12_6:3cc34948e1364f88bfa74088b5693c7f.jpg)
Advertisements
Solutions for Chapter 1: Exception Handling in Python
Below listed, you can find solutions for Chapter 1 of CBSE NCERT for Computer Science [English] Class 12.
NCERT solutions for Computer Science [English] Class 12 1 Exception Handling in Python Exercise [Pages 17 - 18]
“Every syntax error is an exception but every exception cannot be a syntax error.” Justify the statement.
When are the following built-in exceptions raised? Give examples to support your answer.
ImportError
When are the following built-in exceptions raised? Give examples to support your answer.
IOError
When are the following built-in exceptions raised? Give examples to support your answer.
NameError
When are the following built-in exceptions raised? Give examples to support your answer.
ZeroDivisionError
What is the use of a raise statement? Write a code to accept two numbers and display the quotient. Appropriate exception should be raised if the user enters the second number (denominator) as zero (0).
Use assert statement in Question No. 3 to test the division expression in the program.
Define the following:
Exception Handling
Define the following:
Throwing an exception
Define the following:
Catching an exception
Explain catching exceptions using try and except block.
Consider the code given below and fill in the blanks.
print (" Learning Exceptions…")
try:
num1 = int(input ("Enter the first number")
num2 = int(input("Enter the second number"))
quotient=(num1/num2)
print ("Both the numbers entered were correct")
except ________: # to enter only integers
print (" Please enter only numbers")
except __________: # Denominator should not be zero
print(" Number 2 should not be zero")
else:
print(" Great .. you are a good programmer")
___________________ : # to be executed at the end
print(" JOB OVER… GO GET SOME REST")
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.
What is the use of finally clause? Use finally clause in the problem given below.
print (" Learning Exceptions…")
try:
num1 = int(input ("Enter the first number"))
num2 = int(input("Enter the second number"))
quotient=(num1/num2)
print ("Both the numbers entered were correct")
except ________: # to enter only integers
print (" Please enter only numbers")
except __________: # Denominator should not be zero
print(" Number 2 should not be zero")
else:
print(" Great .. you are a good programmer")
___________________ : # to be executed at the end
print(" JOB OVER… GO GET SOME REST")
Solutions for 1: Exception Handling in Python
![NCERT solutions for Computer Science [English] Class 12 chapter 1 - Exception Handling in Python NCERT solutions for Computer Science [English] Class 12 chapter 1 - Exception Handling in Python - Shaalaa.com](/images/computer-science-english-class-12_6:3cc34948e1364f88bfa74088b5693c7f.jpg)
NCERT solutions for Computer Science [English] Class 12 chapter 1 - Exception Handling in Python
Shaalaa.com has the CBSE Mathematics Computer Science [English] Class 12 CBSE solutions in a manner that help students grasp basic concepts better and faster. The detailed, step-by-step solutions will help you understand the concepts better and clarify any confusion. NCERT solutions for Mathematics Computer Science [English] Class 12 CBSE 1 (Exception Handling in Python) include all questions with answers and detailed explanations. This will clear students' doubts about questions and improve their application skills while preparing for board exams.
Further, we at Shaalaa.com provide such solutions so students can prepare for written exams. NCERT textbook solutions can be a core help for self-study and provide excellent self-help guidance for students.
Concepts covered in Computer Science [English] Class 12 chapter 1 Exception Handling in Python are Introduction of Exception Handling in Python, Syntax Errors, Exceptions, Built-in Exceptions, Raising Exceptions, Handling Exceptions, Finally Clause, Creating User Defined Function, Arguments and Parameters, Default Parameters, Positional Parameters, Function Returning Values, Flow of Execution, Scope of a Variable, Types of Function, Class 11 Revision.
Using NCERT Computer Science [English] Class 12 solutions Exception Handling in Python exercise by students is an easy way to prepare for the exams, as they involve solutions arranged chapter-wise and also page-wise. The questions involved in NCERT Solutions are essential questions that can be asked in the final exam. Maximum CBSE Computer Science [English] Class 12 students prefer NCERT Textbook Solutions to score more in exams.
Get the free view of Chapter 1, Exception Handling in Python Computer Science [English] Class 12 additional questions for Mathematics Computer Science [English] Class 12 CBSE, and you can use Shaalaa.com to keep it handy for your exam preparation.