0% found this document useful (0 votes)
34 views40 pages

Introduction

Uploaded by

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

Introduction

Uploaded by

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

Introduction

School name: Meerut public school


Subject name: Informatics practices
Submitted to: Ms. Priyanka Singh
Submitted by: Harsh yadav
Index
S.no. Python Program name
1.
To find average and grade for given marks.
2. To calculate Simple and Compound interest
3. calculate profit-loss
4. calculate tax - GST / Income Tax
5. find the largest and smallest numbers in a list
6. print the first ‘n’ multiples of given number.
7. count the number of vowels in user entered string
8. dictionary to store names of states and their cap.
9. calculate EMI for Amount, Period and Interest
10. find sum of squares of first 100 natural numbers
11. print number of occurrences of given alphabet in each string
12. find sale price of an item with given cost and discount (%).
13. calculate perimeter/circumference and area of shapes
14. dict. of students to store names & marks obtain in 5 subjects

S.no. Mysql program name


1. To create a database
2. To create student table
3. To insert the details of at least 10 students
4. To display the entire content of table
5. To display Rno, Name and Marks of those students….
6. To display Rno, Name, DOB of those students….
7. Display table in descending order…..
8. Update the DOB
9. Add a new column to the table
10. Delete column
11. Delete data of students
12. Display the structure
13. Delete the table
14. Delete the database
1. To find average and grade for given marks.
Output:-
2. To calculate Simple and Compound interest.
Output:-
3. To calculate profit-loss for given Cost and Sell Price.
Output:-
4. To calculate tax - GST / Income Tax.
Output:-
5. To find the largest and smallest numbers in a list
Output:-
6. To print the first ‘n’ multiples of given number.
Output:-
7. To count the number of vowels in user entered string.
Output:-
8. Create a dictionary to store names of states and their capitals
Output:-
9. To calculate EMI for Amount, Period and Interest.
Output:-
10. To find the sum of squares of the first 100 natural numbe
Output:-
11. To print number of occurrences of a given alphabet in eac
Output:-
12. To find sale price of an item with given cost and discount
Output:-
13. To calculate perimeter/circumference and area of shapes
triangle, rectangle, square and circle etc
Output:-
14. Create a dictionary of students to store names and marks
obtained in 5 subjects.
Output:-
Mysql programs

1. To create a database:

Query and output

2. To create student table with the student id, class,


section, gender, name dob, and marks as attributes where the student id is
the primary key.

Query and output:-


3. To insert the details of at least 10 students in the above table

Query and Output:-


4. To display the entire content of table.

Query and Output:-

5. To display Rno, Name and Marks of those students who are scoring marks m
than 50.

Query and Output:-


6. To display Rno, Name, DOB of those students who are
born between ‘2005- 01-01’ and ‘2005-12-31’.

Query and Output:-

7. To display entire table in descending order with respect to marks

Query and output:-


8. Update the DOB of manav verma from ‘2008-05-08’ to ‘2008-01-25’

Query and Output:-

9. Add a new column Phone_no in the table

Query and Output:-


10. Delete column phone_no from the table

Query and output:-


11. Delete data of students whose marks are below 70

Query and Output:-

12. Display the structure of the table

Query and Output:-


13. Delete the table

Query and Output:-

14. Delete the database

Query and Output:-

You might also like