0% found this document useful (0 votes)
125 views6 pages

Practical Record 11 IP

This document outlines the requirements for a class' IP practical record submission. It includes: 1) A list of 14 Python programs and 14 SQL queries that students must complete by August 21st for submission. 2) An oral exam will also be conducted. 3) By August 31st, students must submit a synopsis of the project for the first term. It then provides examples of programs that could be included in the practical record, such as programs to calculate salary, working capital, EMI, and more. The document concludes by showing an example format for the practical record book that students will use to record their work.

Uploaded by

elinaharris739
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
125 views6 pages

Practical Record 11 IP

This document outlines the requirements for a class' IP practical record submission. It includes: 1) A list of 14 Python programs and 14 SQL queries that students must complete by August 21st for submission. 2) An oral exam will also be conducted. 3) By August 31st, students must submit a synopsis of the project for the first term. It then provides examples of programs that could be included in the practical record, such as programs to calculate salary, working capital, EMI, and more. The document concludes by showing an example format for the practical record book that students will use to record their work.

Uploaded by

elinaharris739
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 6

Class-11

IP Practical Record

S.No. Component Submission Date


1 Minimum 14 python programs, and 14 SQL queries 21.08.2023
(Lab record), 14 programs from each term.
2 Viva-voce With practical
exam
3 Term-1: Synopsis of the project to be submitted by the 31.08.2023
students

List of Programs:
1. Write a program to calculate net salary after inputting basic salary, hra%, da% and tax%.
Net=basic + hra + da -tax
2. Write a program to calculate working capital for company A that has cash of about
₹250000, Accounts received of about ₹150000 and inventories of about ₹500000. Company
A also has accounts payable of ₹300000, short term borrowings of ₹75000 and accrued
liabilities of about ₹125000.
[Hint. Working capital = Current assets – Current liabilities]
3. Write a program to calculate EMI as per formula: E = PR (1+R)n / ((1+R)n-1)
Where E=EMI; P=Principal loan amount; R=Rate if interest per month i.e., (Annual
interest/100/12); n=tenure of loan repayment in months.
Get the input from the user(e.g., calculate EMI for loan amount of 200000 at 10% p.a. rate of
interest (10/100/12) for a period of 2 years i.e., 24 months.
4. Write a menu driven program:
a. To calculate amount payable after simple interest.
b. To calculate amount payable after compound interest.
5. Write a program to find the sum of digits of an integer number, input by the user.
6. Write a program to generate the sequence: –5, 10, –15, 20, –25… upto n, where n is an
integer input by the user.
7. Write a program to print every integer between 1 and n divisible by m. Also report whether
the number that is divisible by m is even or odd.
8. Write a program to find lowest and second lowest number from the 10 numbers input.
9. Write a program to input your friends’ names and their phone numbers and store them in
the dictionary as the key-value pair. Perform the following operations on the dictionary:
a) Display the name and phone number of all your friends.
b) Add a new key-value pair in this dictionary and display the modified dictionary.
c) Delete a particular friend from the dictionary.
d) Check if a friend is present in the dictionary or not.
e) Modify the phone number of an existing friend.
f) Display the dictionary in sorted order of names.
10. Write a program to create a dictionary with the roll number, name and marks of n
students in a class and display the names of students who have marks above 75.
11. Program to find frequencies of all elements of a list. Also, print the list of unique elements
in the list and duplicate elements in the given list.

12. Write a program to check if a number is present in the list or not. If the number is present,
return the position of the number. Print an appropriate message if the number is not present in
the list.

13. Write a program to read a list of n integers (positive as well as negative). Create two new
lists, one having all positive numbers and the other having all negative numbers from the given
list. Print all three lists.

14. WAP to print first 20 twin prime numbers.


[Two prime numbers are called twin primes, if there is present only one composite number
between them. Or we can also say two prime numbers whose difference is two are called twin
primes. For example, (3,5) are twin primes, since the difference between the two numbers 5 –
3 = 2]
National Public School Whitefield

INFORMATICS
PRACTICES

Practical Record Book


ACADEMIC YEAR – 2023-24

NAME :

CLASS:

ROLL :
INDEX
Program No. Program
1
2
3
4
INFORMATICS PRACTICES

You might also like