0% found this document useful (0 votes)
13 views1 page

Set B

The document outlines an examination paper for Class XII Informatics Practices (065) for the AISSCE 2024-25. It includes questions related to data manipulation using Python's pandas library and SQL commands for database operations. Additionally, it covers sections for viva, project report, and practical report, with a total marks distribution of 30 and a time limit of 3 hours.

Uploaded by

Varsha Gupta
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)
13 views1 page

Set B

The document outlines an examination paper for Class XII Informatics Practices (065) for the AISSCE 2024-25. It includes questions related to data manipulation using Python's pandas library and SQL commands for database operations. Additionally, it covers sections for viva, project report, and practical report, with a total marks distribution of 30 and a time limit of 3 hours.

Uploaded by

Varsha Gupta
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/ 1

AISSCE (2024-25)

INFORMATICS PRACTICES(065)
CLASS XII
MM-30 Set-B TIME:3 hrs.

Q.1
i. Observe the following dataframe code: (5)
import pandas as pd
dt={'Name':['Akshit','Bharat','Chetan','Dhaval','Gaurang'],
'InternalMarks':[18,19,20,18,19],
'AnnualExam':[76,78,80,76,73]}
df=pd.DataFrame(dt)
print(df)
a) Write the output of the following code.
b) Add record of a student with details [“Mohit”, 20, 75].
c) Add a column “Section” with values [“A”,”B”,”B”,”A”,”C”,”A”].
d) Rename a column named “AnnualExam” to “BoardExam”.
e) Rename index as [101,102,103,104,105] .

ii. Mrs. Namrata is a coordinator in the senior section school. She represented data on Enrollment in line
chart as follows: (3)

Help her to write code.

Q.2 Write SQL commands for (a) to (d) and write the output of (e) and (g). (7)
Table : Bank
(a) Display Bank_id Cust_name Bank_name Amount transaction
details of those
customers 1 Amit State Bank 20000 25
whose 2 Sunil Union Bank 25000 20
transactions are
more than 20. 3 Nidhi UCO Bank 18000 15
(b) 4 Ashish Union Bank 10000 22
5 Suman State Bank 18500 8
Display Customer Name and Amount of all the customers of State Bank.
(c) Display the total number of customers of Union Bank.
(d) Display details of customers whose name contains ‘i’.
(e) Select sum(Amount) from Bank;
(f) Select count(*) from Bank;
(g) Select max(Amount), Bank_name from Bank group by Bank_name;

Q.3 Viva (5)


Q.4 Project Report (5)
Q.5 Practical Report (5)

You might also like