Board Practical Qp-20-23 Xii

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 10

AMRITA VIDYALAYAM, PALAKKAD

AISSCE 2023 BOARD PRACTICAL EXAMINATION


INFORMATICS PRACTICES(065)
Python :
1. Write a program to calculate compound interest.
2. Write a Program to plot a bar chart in python to display the result of a
school for five consecutive years.
Year = 2015, 2016, 2017, 2018, 2019 #list of years
P = 98.50, 70.25, 55.20, 90.5, 61.50 # List of pass

MySQL :
1. Write SQL query to create a database AMRITA.
2. Write SQL query to open database AMRITA.
3. Write SQL query to show the structure of table Empl.
4. Write SQL query to Insert 2 records same as it is in image.
5. Write SQL query to display all the records from table EMPL whose job is
Manager.
6. Write SQL query to display EmpNo and EName of all employees and Empno
sorted in descending order.
7. Display the details of employees whose name have only four letters.

VIVA VOCE :
1. Record
2. Project

***************
AMRITA VIDYALAYAM, PALAKKAD
AISSCE 2023 BOARD PRACTICAL EXAMINATION
INFORMATICS PRACTICES(065)
Python:
1. Write a Program to calculate:
Area of circle [A=πr2]
Area of square [A=a*a]
Area of rectangle [A=l*b].

2.Create a multiline chart on common plot where three data ranges plotted on
same chart.
data=[[5,25,45,20], [8,1,29,27], [9,29,27,39]]

MySQL :
1. Display the details of employees whose name have only four letters.
2. Display the details of all employee whose annual salary is between2500to4000.
3. Display name, job title and salary of employee who do not have manager.
4. Display the name of employee whose name contains “A” as third letter.
5. Display the name of employee whose name contains “I” as any letter.
6. Display the no. of departments. Each department no should be displayed once.
7. Find the average salary of the employees in EMPL table.
VIVA VOCE :
1. Record
2. Project
AMRITA VIDYALAYAM, PALAKKAD
AISSCE 2020-23 BOARD PRACTICAL EXAMINATION
INFORMATICS PRACTICES(065)

Python:
1.Write a Pandas program to find out the biggest and smallest three area from
the Given series that stores the area of some states in km2.(Head/Tail)

Series 3456, 890, 450, 67892, 34677, 78902, 56711, 68291, 637632, 25723,236,
1189, 345, 256517

2. Write a program to plot a bar chart in python to display the result of a


School for five consecutive years.

Year = 2015, 2016, 2017, 2018, 2019 #list of years


P = 98.50, 70.25, 55.20, 90.5, 61.50 # List of pass

MySQL :
1. Find the minimum salary of job SALEMAN in EMPL table.
2. Display all data of empl according to salary arranged by ascending order.
3. Display department no, job and no. Of employee in each particular job.
4.Display the jobs where the number of employee is less than 3.
5. Display all the employee names in Capital letters.
6. Display the name of the month of the date ‘2021-03-11’.
7. Extract the string ‘tics’ from ‘ informatics’.

VIVA VOCE :
1. Record
2. Project
AMRITA VIDYALAYAM, PALAKKAD
AISSCE 2022-23 BOARD PRACTICAL EXAMINATION
INFORMATICS PRACTICES(065)

Python:
1. Write a menu driven Pandas program to sort data series according to the
Value and index.
2. Create Bar chart from the given data of Dataframe.

d = 'Name' : 'Sachin','Dhoni','Virat','Rohi’Shikhar',
'Age': 26,25,25,24,31,
'Score' : 87,67,89,55,47

MySQL
1. Write SQL query to show the structure of table empl.
2. Write SQL query to Insert 2 additional records with same structure as empl.
3. Write SQL query to select the name of the day from the date ‘2021/03/11’.
4. Write SQL query to display EmpNo and EName of all employees in descending
order of Empno.
5. Display the details of employees whose name have only four letters.
6. Display the position of the string ‘LE’in field job of table EMPL.
7. Display name, job title and salary of employee who do not have manager.
VIVA VOCE
1. Practical
2. Project
AMRITA VIDYALAYAM, PALAKKAD
AISSCE 2022-23 BOARD PRACTICAL EXAMINATION
INFORMATICS PRACTICES(065)
Python:
1. Write a Pandas program to create data series and then change the
index of the series objects in any random order.

2. A survey gathers heights and weights of 50 participants and recorded


the participants age as
Ages=[40,56,46,58,79,70,67,46,32,91,92,93,47,95, ,29,0,31,21,14,18,16,
71,01,69,78,77,54,59,59,41,51,48,49,76,10]
Create a Histogram.
MySQL
1.Display name of employee in lower case and uppercase letters.
2.Write SQL query to select the day name of the date ‘2021/03/11’.
3. Display all data of empl according to salary arranged by descending order.
4. Display the jobs where the number of employee is less than 3.
5. Display the no of departments. Each department no should be displayed once.
6. Write SQL query to display EmpNo and EName of all employees in
descending order of Empno from the Table empl.
7. Display name, job title and salary of employee who do not
have manager.

VIVA VOCE
1. Practical
2. Project
AMRITA VIDYALAYAM, PALAKKAD
AISSCE 2022-23 BOARD PRACTICAL EXAMINATION
INFORMATICS PRACTICES(065)
Python:
1. Write a Python Program to create the data frame with following values and
perform head()& tail()Functions on it.
2. ProfAasthi is doing some research in the field of environment. For some
purpose, he has generated some data:
Mu=100
Sigma=15
X= mu+sigma*numpy.random.randn(10000)
Y=mu+30*np.random.randn(10000)
Create a Histogram.

MySQL

1 Write SQL query to show the structure of table.


2 Write SQL query to Insert 2 additional records with same structure as it is in the
table.
3 Write SQL query to display all the records from table empl.
4 Write SQL query to display EmpNo and EName of all employees from the table
empl in descending order of empno.
5 Display the details of employees whose name have only four letters.
6. Display the position of the string ‘LE’ in field job of table EMPL.
7. Write SQL query to select the day name of the date ‘2021/03/11’.

VIVA VOCE
1. Practical
2. Project
AMRITA VIDYALAYAM, PALAKKAD
AISSCE 2022-23 BOARD PRACTICAL EXAMINATION
INFORMATICS PRACTICES(065)
Python:
1. Write a program that reads from a csv file (marks.csv stored in desired
location) in a data frame then add a column Total storing total marks in three
subjects and another column for storing average marks.. Print the data
Frame After adding these columns.

2. Create multiline chart on common plot where three


Data range plotted on same
chart. The data range(s) to be plotted are.
data=[[5,25,45,20],[8,1,29,27],[9,29,27,39]]

MySQL

1. Write SQL query to create a database Employee.


2. Write SQL query to open database Employee.
3. Write SQL query to show the structure of table.
4. Write SQL query to Insert 3 records same as it is in image.
5. Write SQL query to display all the records from table empl.
6. Write SQL query to display EmpNo and EName of all employees from the table
empl in descending order of empno.
7. Display the details of employees whose name have only four letters.

VIVA VOCE :
3. Record
4. Project
AMRITA VIDYALAYAM, PALAKKAD
AISSCE 2022-23 BOARD PRACTICAL EXAMINATION
INFORMATICS PRACTICES(065)
Python:
1.Write a Python Program to create the data frame perform binary functions
on it.
2.A survey gathers heights and weight of 50participates and recorded
the participants age as
Ages=[40,56,46,58,79,70,67,46,32,91,92,93,47,95,69,69,56,50,30,9,29,2
9,0,31,21,14,18,16,18,76,68,69,78,81,71,91,71,01, 49,76,10]
Create a Histogram.

MySQL
1. Find the minimum salary of job SALEMAN in EMPL table.
2. Display all data of empl according to salary arranged by ascending order.
3. Display department no, job and no. Of employee in each particular job .
4.Display the jobs where the number of employee is less than 3.
5. Write SQL query to display EmpNo and EName of all employees in
descending order of Empno from the Table empl.
6.Display name, job title and salary of employee who do not
have manager.
7. Write SQL query to select the name of the month ‘2021/03/11’.

VIVA VOCE :
1. Record
2. Project
AMRITA VIDYALAYAM, PALAKKAD
AISSCE 2022-23 BOARD PRACTICAL EXAMINATION
INFORMATICS PRACTICES(065)
PYTHON:
1. Write a program to connect Python with MySQL using database connectivity
and perform the following operations on data in database:
create a table named ‘STUDENT’. Fields (Rno, Name,Total)

2. Create Bar chart from the given data of Data frame.


d='Name': 'Sachin','Dhoni', 'Virat', 'Rohi’, Shikhar',
'Age': 26, 25, 25, 24, 31,
'Score':87, 67, 89, 55, 47

MySQL:
1 Find the total number of Employee from emp ltable.
2. Find the maximum salary of job SALEMAN in EMPL table.
3. Find the average salary of job Manager in EMPL table.
4. Display name ,job title and salary of employee who do not have manager.
5. Display the details of all employee whose annual salary is between 25000 to 40000.
6. Display the details of employees whose name have only four letters.
7.Write SQL query to display EmpNo and EName of all employees from the
Table empl.

VIVA VOCE :
1. Record
2. Project

You might also like