Class 11 Practical Paper IP Term 1 Download PDF Free

This article provides Class 11 Practical Paper IP Term. Download the free pdf and learn it. Let’s start it!

Class 11 Practical Paper IP Term 1

The class 11 practical paper IP term 1 has the following structure:

S.NoTopicMarks
1Python program (pen and paper or Collab or any online idle or pyroid screen for mobile)15
2Practical File- 15 python Programs or Notebook10
3Viva5
Total30

The python program can be asked in 10 marks. Here I have attached the question paper for reference.

The question paper contains 3 questions.

Q-1 is a python program based on any concept taught in the class.

Q-2 It’s a practical file consisting of 15 programs.

Q-3 Viva – Can be asked individually or in groups according to the strength of students.

Here I will provide you with the python program solution for the same.

Q-1 Python Program for Class 11 Practical Paper IP Term 1

The first question I have asked in Class 11 Practical Paper IP Term 1 is as the following:

Question

A cloth showroom has announced the following seasonal discounts on the purchase of items. Accept Customer ID, Customer Name, Customer Address, Amount and then compute the discount as given below:

AmountDiscount
            1-10005%
            1001-20007.5%
            2001-300010.0%
            Above 300015.0%

Write a program to compute the net amount to be paid by a customer in the following format:                       

====================================================

  Customer ID: XXXXX                                 Date: XXXXX

  Customer Name: XXXXXXXXXXX

====================================================

  Bill Amount                                   :                  XXXXXX

  Discount Applied (in %)              :                   XX

  Discount Amount                          :                   XX

====================================================

  Net Bill Amount                            :                   XXXX

====================================================

Code

cu_id=input("Enter Customer id:")
cu_name=input("Enter Customer Name:")
cu_add=input("Enter Address:")
amt=int(input("Enter the amount:"))
if amt>=1 and amt<=1000:
  di_ap=5
  dis=amt*0.05
elif amt>1000 and amt<=2000:
  di_ap=7.5
  dis=amt*0.075
elif amt>2000 and amt<3000:
  di_ap=10
  dis=amt*0.1
elif amt>3000:
  di_ap=15
  dis=amt*0.15
else:
  print("Invalid Amount")
nt_amt=amt-dis
print("="*70)
print("Customer ID:",cu_id,"\t Date:23/10/2021")
print("Customer Name:",cu_name,"\t Customer Address:",cu_add)
print("="*70)
print("Bill Amount\t\t\t:",amt)
print("\n")
print("Discount Applied (in %)\t\t:",di_ap)
print("\n")
print("Discount Amount\t\t\t:",dis)
print("="*70)
print("Discount Amount\t\t\t:",nt_amt)
print("="*70)

Output of Question

Output Practical Question Paper Class 11

Q-2 Practical Records File

The practical records file should be prepared either written or with a hard copy. Check out this link for the practical file.

IP class 11 Practical file Term 1

Q – 3 Viva

The third question consists of the viva questions asked by the subject teacher. The questions can be asked from the topics covered in the practical file.

Download the Class 11 Practical Paper IP Term 1

Follow this link to download Class 11 Practical Paper IP Term 1 PDF. This PDF contains 3 sets of question papers which can be given to students of computer science class 11 and informatics practices class 11.

Download the practical question paper class 11

I hope you have enjoyed this article for Class 11 Practical Paper IP Term 1. If you have any doubts or queries you can ask in the comment section.

Thank you for visiting this blog.

Leave a Reply