मराठी

Computer Science (Python) Set 4 2021-2022 Commerce (English Medium) Class 12 Question Paper Solution

Advertisements
Computer Science (Python) [Set 4]
Marks: 35 CBSE
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:

  1. This question paper is divided into 3 Sections - A, B and C.
  2. Section A, consists of 7 questions (1-7). Each question carries 2 marks.
  3. Section B, consists of 3 questions (8-10). Each question carries 3 marks.
  4. Section C, consists of 3 questions (11-13). Each question carries 4 marks.
  5. Internal choices have been given for question numbers - 7, 8 and 12.

SECTION - A [Each question carries 2 marks]
[2]1

"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.

Concept: undefined - undefined
Chapter:
[2]2
[1]2.i

Expand the following:

VoIP

Concept: undefined - undefined
Chapter:

Expand the following term:

PPP

Concept: undefined - undefined
Chapter:
[1]2.ii

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?

Concept: undefined - undefined
Chapter:
[2]3

Differentiate between the terms Attribute and Domain in the context of Relational Data Model.

Concept: undefined - undefined
Chapter:
[2]4

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 = "#")
Concept: undefined - undefined
Chapter:
[2]5

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
  1. SELECT Name, Age FROM VACCINATION_DATA
    WHERE Dose2 IS NOT NULL AND Age > 40;
  2. SELECT City, COUNT(*) FROM VACCINATION_DATA GROUP BY City;
  3. SELECT DISTINCT City FROM VACCINATI ON_ DATA;
  4. SELECT MAX(Dose1), MIN(Dose2) FROM VACCINATION_ DATA;
Concept: undefined - undefined
Chapter:
[2]6

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
  1. SELECT DNAME, PNAME FROM DOCTOR
    NATURAL JOIN PATIENT;
  2. SELECT PNAME, ADMDATE, FEES
    FROM PATIENT P, DOCTOR D
    WHERE D.DNO = P.DNO AND FEES > 1000;
Concept: undefined - undefined
Chapter:
[2]7
Advertisements
[2]7.i

Differentiate between Candidate Key and Primary Key in the context of Relational Database Model.

Concept: undefined - undefined
Chapter:
OR
[2]7.ii

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
  1. Identify and write the name of the most appropriate column from the given table PLAYER that can be used as a Primary key.
  2. Define the term Degree in relational data model. What is the Degree of the given table PLAYER?
Concept: undefined - undefined
Chapter:
SECTION - B [Each question carries 3 marks]
[3]8
[3]8.i
  • Write the definition of a user defined function PushNV(N) which accepts a list of strings in the parameter N and pushes all strings which have no vowels present in it, into a list named NoVowel.
  • 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 function PushNV() to create a stack of words in the list NoVowel so that it stores only those words which do not have any vowel present in it, from the list All. Thereafter, pop each word from the list NoVowel 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

Concept: undefined - undefined
Chapter:
OR
[3]8.ii
  • Write the definition of a user defined function Push3_5 (N) which accepts a list of integers in a parameter N and pushes all those integers which are divisible by 3 or divisible by 5 from the list N into a list named Only3_5.
  • Write a program in Python to input 5 integers into a list named NUM.
    The program should then use the function Push 3_5() to create the stack of the list Only3_5. Thereafter pop each integer from the list Only3_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

Concept: undefined - undefined
Chapter:
[3]9
[1]9.i

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.

Concept: undefined - undefined
Chapter:
[2]9.ii

Categorize the following SQL commands into DDL and DML:

CREATE, UPDATE, INSERT, DROP

Concept: undefined - undefined
Chapter:
[3]10
Advertisements
[1]10.i

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".

Concept: undefined - undefined
Chapter:
[1]10.ii

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.

Concept: undefined - undefined
Chapter:
[1]10.iii

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".

Concept: undefined - undefined
Chapter:
SECTION - C [Each question carries 4 marks]
[4]11

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
  1. Write a query to change the fare to 6000 of the flight whose FNO is F104.
  2. Write a query to display the total number of MALE and FEMALE PASSENGERS.
  3. Write a query to display the NAME, corresponding FARE and F_DATE of all PASSENGERS who have a flight to START from DELHI.
  4. Write a query to delete the records of flights which end at Mumbai.
Concept: undefined - undefined
Chapter:
[4]12
[2]12.i
[2]12.i.a

Differentiate between Bus Topology and Tree Topology.

Concept: undefined - undefined
Chapter:

Give one advantage of Bus topology.

Concept: undefined - undefined
Chapter:

Write one advantage of Tree Topology.

Concept: undefined - undefined
Chapter:
OR
[2]12.i.b

Write two points of difference between XML and HTML.

Concept: undefined - undefined
Chapter: [0.05] Python - Communication Technologies [0.1] Computer Networks
[2]12.ii

What is a Web Browser?

Concept: undefined - undefined
Chapter: [0.05] Python - Communication Technologies [0.1] Computer Networks

Write the names of any two commonly used Web Browsers.

Concept: undefined - undefined
Chapter: [0.05] Python - Communication Technologies [0.1] Computer Networks
[4]13

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
  1. 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.
    1. MODEM
    2. ETHERNET CARD
    3. REPEATER
    4. HUB
  2. Which hardware networking device out of the following, will you suggest to connect all the computers within each block?
    1. SWITCH
    2. MODEM
    3. REPEATER
    4. ROUTER
  3. 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?
    1. FTP
    2. PPP
    3. SMTP
    4. VoIP
  4. Draw the cable layout (block to block) to efficiently connect the three offices of the Mumbai branch.
Concept: undefined - undefined
Chapter:

Other Solutions



































Submit Question Paper

Help us maintain new question papers on Shaalaa.com, so we can continue to help students




only jpg, png and pdf files

CBSE previous year question papers Class 12 Computer Science (Python) with solutions 2021 - 2022

     CBSE Class 12 Computer Science (Python) question paper solution is key to score more marks in final exams. Students who have used our past year paper solution have significantly improved in speed and boosted their confidence to solve any question in the examination. Our CBSE Class 12 Computer Science (Python) question paper 2022 serve as a catalyst to prepare for your Computer Science (Python) board examination.
     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.
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×