Commerce (English Medium)
Science (English Medium)
Arts (English Medium)
Academic Year: 2021-2022
Date & Time: 13th June 2022, 10:30 am
Duration: 2h
Advertisements
General Instructions:
- This question paper is divided into 3 Sections - A, B and C.
- Section A, consists of 7 questions (1-7). Each question carries 2 marks.
- Section B, consists of 3 questions (8-10). Each question carries 3 marks.
- Section C, consists of 3 questions (11-13). Each question carries 4 marks.
- Internal choices have been given for question numbers - 7, 8 and 12.
"Stack is a linear data structure which follows a particular order in which the operations are performed."
What is the order in which the operations are performed in a Stack?
Name the List method/function available in Python which is used to remove the last element from a list implemented stack.
Also write an example using Python statements for removing the last element of the list.
Chapter:
Riya wants to transfer pictures from her mobile phone to her laptop. She uses Bluetooth technology to connect two devices. Which type of network (PAN/LAN/MAN/WAN) will be formed in this case?
Chapter:
Differentiate between the terms Attribute and Domain in the context of Relational Data Model.
Chapter:
Consider the following SQL table MEMBER in a SQL Database CLUB:
Table: MEMBER
M_ID |
NAME |
ACTIVITY |
M1001 |
Amina |
GYM |
M1002 |
Pratik |
GYM |
M1003 |
Simon |
SWIMMING |
M1004 |
Rakesh |
GYM |
M1005 |
Avneet |
SWIMMING |
Assume that the required library for establishing the connection between Python and MYSQL is already imported in the given Python code. Also assume that DB is the name of the database connection for table MEMBER stored in the database CLUB.
Predict the output of the following code :
MYCUR = DB.cursor()
MYCUR.execute ("USE CLUB")
MYCUR.execute ("SELECT * FROM MEMBER WHERE ACTIVITY= 'GYM' ")
R=MYCUR.fetchone()
for i in range(2) :
R=MYCUR.fetchone()
print (R[0], R[1], sep = "#")
Chapter:
Write the output of SQL queries (a) to (d) based on the table VACCINATION_DATA given below:
Table: VACCINATION_DATA
VID |
Name |
Age |
Dose1 |
Dose2 |
City |
101 |
Jenny |
27 |
2021-12-25 |
2022-01-31 |
Delhi |
102 |
Harjot |
55 |
2021-07-1 4 |
2021-10-14 |
Mumbai |
103 |
Srikanth |
43 |
2021-04-18 |
2021-07-20 |
Delhi |
104 |
Gazala |
75 |
2021-07-31 |
NULL |
Kolkata |
105 |
Shiksha |
32 |
2022-01-01 |
NULL |
Mumbai |
SELECT Name, Age FROM VACCINATION_DATA
WHERE Dose2 IS NOT NULL AND Age > 40;
SELECT City, COUNT(*) FROM VACCINATION_DATA GROUP BY City;
SELECT DISTINCT City FROM VACCINATI ON_ DATA;
SELECT MAX(Dose1), MIN(Dose2) FROM VACCINATION_ DATA;
Chapter:
Write the output of SQL queries (a) and (b) based on the following two tables DOCTOR and PATIENT belonging to the same database:
Table: DOCTOR
DNO |
DNAME |
FEES |
D1 |
AMITABH |
1500 |
D2 |
ANIKET |
1000 |
D3 |
NIKHIL |
1500 |
D4 |
ANJANA |
1500 |
Table: PATIENT
PNO |
PNAME |
ADMDATE |
DNO |
P1 |
NOOR |
2021-12-25 |
D1 |
P2 |
ANNIE |
2021-11-20 |
D2 |
P3 |
PRAKASH |
2020-12-1 0 |
NULL |
P4 |
HARMEET |
2019-12-20 |
D1 |
SELECT DNAME, PNAME FROM DOCTOR
NATURAL JOIN PATIENT;
SELECT PNAME, ADMDATE, FEES
FROM PATIENT P, DOCTOR D
WHERE D.DNO = P.DNO AND FEES > 1000;
Chapter:
Advertisements
Differentiate between Candidate Key and Primary Key in the context of Relational Database Model.
Chapter:
Consider the following table PLAYER:
Table: PLAYER
PNO |
NAME |
SCORE |
P1 |
RISHABH |
52 |
P2 |
HUSSAIN |
45 |
P3 |
ARNOLD |
23 |
P4 |
ARNAV |
18 |
P5 |
GURSHARAN |
42 |
- Identify and write the name of the most appropriate column from the given table PLAYER that can be used as a Primary key.
- Define the term Degree in relational data model. What is the Degree of the given table PLAYER?
Chapter:
- Write the definition of a user defined function
PushNV(N)
which accepts a list of strings in the parameterN
andpushes
all strings which have no vowels present in it, into a list namedNoVowel
. - Write a program in Python to input 5 words and
push
them one by one into a list named All.
The program should then use the functionPushNV()
to create a stack of words in the listNoVowel
so that it stores only those words which do not have any vowel present in it, from the listAll
. Thereafter,pop
each word from the listNoVowel
and display the popped word. When the stack is empty display the message"EmptyStack"
.
For example:
If the Words accepted and pushed into the list All
are
['DRY', 'LIKE', 'RHYTHM', 'WORK', 'GYM']
Then the stack No Vowel should store
['DRY', 'RHYTHM', 'GYM']
And the output should be displayed as
GYM RHYTHM DRY EmptyStack
Chapter:
- Write the definition of a user defined function
Push3_5 (N)
which accepts a list of integers in a parameterN
andpushes
all those integers which aredivisible by 3 or divisible by 5
from the listN
into a list namedOnly3_5
. - Write a program in Python to input 5 integers into a list named
NUM
.
The program should then use the functionPush 3_5()
to create the stack of the listOnly3_5
. Thereafterpop
each integer from the listOnly3_5
and display the popped value. When the list is empty, display the message"StackEmpty"
.
For example:
If the integers input into the list NUM
are:
[10, 6, 14, 18, 30]
Then the stack Only3_5
should store
[10, 6, 18, 30]
And the output should be displayed as
30 18 6 10 StackEmpty
Chapter:
A SQL table ITEMS
contains the following columns:
INO, INAME, QUANTITY, PRICE, DISCOUNT
Write the SQL command to remove the column DISCOUNT
from the table.
Chapter:
Categorize the following SQL commands into DDL and DML:
CREATE, UPDATE, INSERT, DROP
Chapter:
Advertisements
Rohan is learning to work upon Relational Database Management System (RDBMS) application. Help him to perform the following task:
To open the database named "LIBRARY"
.
Chapter:
Rohan is learning to work upon Relational Database Management System (RDBMS) application. Help him to perform the following task:
To display the names of all the tables stored in the opened database.
Chapter:
Rohan is learning to work upon Relational Database Management System (RDBMS) application. Help him to perform the following task:
To display the structure of the table "BOOKS"
existing in the already opened database "LIBRARY"
.
Chapter:
Write SQL queries for (a) to (d) based on the tables PASSENGER and FLIGHT given below:
Table: PASSENGER
PNO |
NAME |
GENDER |
FNO |
1001 |
Suresh |
Male |
F101 |
1002 |
Anita |
Female |
F104 |
1003 |
Harjas |
Male |
F102 |
1004 |
Nita |
Female |
F103 |
Table: FLIGHT
FNO |
START |
END |
F_DATE |
FARE |
F101 |
MUMBAI |
CHENNAI |
2021-12-25 |
4500 |
F102 |
MUMBAI |
BENGALURU |
2021-11-20 |
4000 |
F103 |
DELHI |
CHENNAI |
2021-12-10 |
5500 |
F104 |
KOLKATA |
MUMBAI |
2021-12-20 |
4500 |
F105 |
DELHI |
BENGALURU |
2021-01-15 |
5000 |
- Write a query to change the fare to 6000 of the flight whose FNO is F104.
- Write a query to display the total number of
MALE
andFEMALE
PASSENGERS
. - Write a query to display the
NAME
, correspondingFARE
andF_DATE
of all PASSENGERS who have a flight toSTART
from DELHI. - Write a query to delete the records of flights which end at Mumbai.
Chapter:
Differentiate between Bus Topology and Tree Topology.
Chapter:
Write two points of difference between XML and HTML.
Chapter: [0.05] Python - Communication Technologies [0.1] Computer Networks
What is a Web Browser?
Chapter: [0.05] Python - Communication Technologies [0.1] Computer Networks
Write the names of any two commonly used Web Browsers.
Chapter: [0.05] Python - Communication Technologies [0.1] Computer Networks
Galaxy Provider Ltd. is planning to connect its office in Texas, USA with its branch at Mumbai. The Mumbai branch has 3 Offices in three blocks located at some distance from each other for different operations – ADMIN, SALES and ACCOUNTS.
As a network consultant, you have to suggest the best network related solutions for the issues/problems raised in (a) to (d), keeping in mind the distances between various locations and other given parameters.
Layout of the Offices in the Mumbai branch:
Shortest distances between various locations:
ADMIN block to SALES Block | 300 m |
SALES Block to ACCOUNTS Block | 175 m |
ADMIN Block to ACCOUNTS Block | 350 m |
MUMBAI Branch to TEXAS Head Office | 14000 km |
Number of Computers installed at various locations are as follows:
ADMIN Block | 255 |
ACCOUNTS Block | 75 |
SALES Block | 30 |
TEXAS Head Office | 90 |
- It is observed that there is a huge data loss during the process of data transfer from one block to another. Suggest the most appropriate networking device out of the following, which needs to be placed along the path of the wire connecting one block office with another to refresh the signal and forward it ahead.
- MODEM
- ETHERNET CARD
- REPEATER
- HUB
- Which hardware networking device out of the following, will you suggest to connect all the computers within each block?
- SWITCH
- MODEM
- REPEATER
- ROUTER
- Which service/protocol out of the following will be most helpful to conduct live interactions of employees from Mumbai Branch and their counterparts in Texas?
- FTP
- PPP
- SMTP
- VoIP
- Draw the cable layout (block to block) to efficiently connect the three offices of the Mumbai branch.
Chapter:
Other Solutions
Submit Question Paper
Help us maintain new question papers on Shaalaa.com, so we can continue to help studentsonly jpg, png and pdf files
CBSE previous year question papers Class 12 Computer Science (Python) with solutions 2021 - 2022
Previous year Question paper for CBSE Class 12 Computer Science (Python)-2022 is solved by experts. Solved question papers gives you the chance to check yourself after your mock test.
By referring the question paper Solutions for Computer Science (Python), you can scale your preparation level and work on your weak areas. It will also help the candidates in developing the time-management skills. Practice makes perfect, and there is no better way to practice than to attempt previous year question paper solutions of CBSE Class 12.
How CBSE Class 12 Question Paper solutions Help Students ?
• Question paper solutions for Computer Science (Python) will helps students to prepare for exam.
• Question paper with answer will boost students confidence in exam time and also give you an idea About the important questions and topics to be prepared for the board exam.
• For finding solution of question papers no need to refer so multiple sources like textbook or guides.