मराठी

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

Advertisements
Computer Science (Python) [Set 4]
Marks: 70 CBSE
Commerce (English Medium)
Science (English Medium)
Arts (English Medium)

Academic Year: 2023-2024
Date & Time: 2nd April 2024, 10:30 am
Duration: 3h
Advertisements

General Instructions:

  1. Please check this question paper contains 35 questions.
  2. The paper is divided into 5 Sections-A, B, C, D, and E.
  3. Section A, consists of 18 questions (1 to 18). Each question carries 1 mark.
  4. Section B, consists of 7 questions (19 to 25). Each question carries 2 marks.
  5. Section C, consists of 5 questions (26 to 30). Each question carries 3 marks.
  6. Section D, consists of 2 questions (31 to 32). Each question carries 4 marks.
  7. Section E, consists of 3 questions (33 to 35). Each question carries 5 marks.
  8. All programming questions are to be answered using Python language only.

SECTION - A
[1]1 | State True or False:

While defining a function in Python, the positional parameters in the function header must always be written after the default parameters.

True 

False

Concept: undefined - undefined
Chapter:
[1]2

The SELECT statement when combined with the ______ clause returns records without repetition.

DESCRIBE

UNIQUE

DISTINCT

NULL

Concept: undefined - undefined
Chapter: [0.09] Structured Query language (SQL)
[1]3

What will be the output of the following statement:
print (16*5/4*2/5−8)

−3.33

6.0

0.0

−13.33

Concept: undefined - undefined
Chapter:
[1]4

What possible output from the given options is expected to be displayed when the following Python code is executed?

import random 
Signal = ['RED', 'YELLOW', 'GREEN'] 
for K in range (2, 0, -1): 
R = random.randrange (K) 
print (Signal [R], end = '#') 

YELLOW # RED #

RED # GREEN #

GREEN # RED #

YELLOW # GREEN # 

Concept: undefined - undefined
Chapter:
[1]5

In SQL, the aggregate function which will display the cardinality of the table is ______.

sum()

count(*)

avg()

sum(*)

Concept: undefined - undefined
Chapter:
[1]6

Which protocol out of the following is used to send and receive emails over a computer network?

PPP

HTTP

FTP

SMTP

Concept: undefined - undefined
Chapter:
[1]7

Identify the invalid Python statement from the following.

d = dict()

e = {}

f = []

g = dict{}

Concept: undefined - undefined
Chapter:
[1]8

Consider the statements given below and then choose the correct output from the given options:

myStr="MISSISSIPPI"
print(myStr[:4]+"#"+myStr[−5:])

MISSI#SIPPI

MISS#SIPPI

MISS#IPPIS

MISSI#IPPIS

Concept: undefined - undefined
Chapter:
[1]9

Identify the statement from the following which will raise an error:

print("A"*3)

print(5*3)

print("15" + 3)

print("15" + "13")

Concept: undefined - undefined
Chapter:
[1]10

Select the correct output of the following code:

event="G20 Presidency@2023"
L=event.split(' ')
print (L[::−2]) 

'G20'

['Presidency@2023']

['G20']

'Presidency@2023'

Concept: undefined - undefined
Chapter:
[1]11

Which of the following options is the correct unit of measurement for network bandwidth? 

KB

Bit

Hz

Km

Concept: undefined - undefined
Chapter:
[1]12

Observe the given Python code carefully:

a=20
def convert(a):
      b=20
      a=a+b

convert(10)
print(a)

Select the correct output from the given options:

10

20

30

Error

Concept: undefined - undefined
Chapter:
[1]13

While handling exceptions in Python, name of the exception has to be compulsorily added with except clause. 

True

False

Concept: undefined - undefined
Chapter:
[1]14

Which of the following is not a DDL command in SQL?

DROP

CREATE

UPDATE

ALTER

Concept: undefined - undefined
Chapter:
[1]15 | Fill in the blank:

______ is a set of rules that needs to be followed by the communicating parties in order to have a successful and reliable data communication over a network. 

Concept: undefined - undefined
Chapter:
[1]16

Consider the following Python statement:

F=open('CONTENT.TXT')

Which of the following is an invalid statement in Python?

F.seek(1, 0)

F.seek(0, 1)

F.seek(0, −1)

F.seek(0, 2)

Concept: undefined - undefined
Chapter:
Q.17 and 18 are ASSERTION (A) and REASONING (R) based questions.
[1]17

Assertion (A): CSV file is a human readable text file where each line has a number of fields, separated by comma or some other delimiter.

Reason (R): writerow() method is used to write a single row in a CSV file. 

Both (A) and (R) are true and (R) is the correct explanation for (A).

Both (A) and (R) are true and (R) is not the correct explanation for (A).

(A) is true but (R) is false.

(A) is false but (R) is true.

Concept: undefined - undefined
Chapter:
[1]18

Assertion (A): The expression "HELLO".sort() in Python will give an error.

Reason (R): sort() does not exist as a method/function for strings in Python.

Both (A) and (R) are true and (R) is the correct explanation for (A).

Both (A) and (R) are true and (R) is not the correct explanation for (A).

(A) is true but (R) is false.

(A) is false but (R) is true.

Concept: undefined - undefined
Chapter:
SECTION - B
[2]19
[2]19.A
[1]19.A.i
[0.5]19.A.i.a

Expand the following term:

XML

Concept: undefined - undefined
Chapter:
Advertisements
[0.5]19.A.i.b

Expand the following term:

PPP

Concept: undefined - undefined
Chapter:
[1]19.A.ii

Write two points of difference between Circuit Switching and Packet Switching.

Concept: undefined - undefined
Chapter: [0.11] Data Communication
OR
[2]19.B
[1]19.B.i

Define the term web hosting.

Concept: undefined - undefined
Chapter:
[1]19.B.ii

Name any two web browsers.

Concept: undefined - undefined
Chapter:
[2]20

The code given below accepts five numbers and displays whether they are even or odd:

Observe the following code carefully and rewrite it after removing all syntax and logical errors: 

Underline all the corrections made.

def EvenOdd()
      for i in range (5):
            num=int (input ("Enter a number")
            if num/2==0:
                  print ("Even")
            else:
            print ("Odd")
EvenOdd()
Concept: undefined - undefined
Chapter:
[2]21
[2]21.A

Write a user defined function in Python named showGrades(S) which takes the dictionary S as an argument. The dictionary, S contains Name: [Eng ,Math, Science] as key:value pairs. The function displays the corresponding grade obtained by the students according to the following grading rules: 

Average of Eng, Math, Science Grade
>=90 A
<90 but >=60 B
<60 C 

For example: Consider the following dictionary

S={"AMIT": [92, 86, 64], "NAGMA": [65, 42, 43], "DAVID": [92, 90, 88]}

The output should be:

AMIT - B
NAGMA - C
DAVID - A 

Concept: undefined - undefined
Chapter:
OR
[2]21.B

Write a user defined function in Python named Puzzle (W, N) which takes the argument W as an English word and N as an integer and returns the string where every Nth alphabet of the word W is replaced with an underscore ("_").

For example: if W contains the word "TELEVISION" and N is 3, then the function should return the string "TE_EV_SI_N". Likewise for the word "TELEVISION" if N is 4, then the function should return "TEL_VIS_ON".

Concept: undefined - undefined
Chapter:
[2]22

Write the output displayed on execution of the following Python code:

LS= ["HIMALAYA'', "NILGIRI", "ALASKA'', "ALPS"] 
D={} 
for S in LS: 
     if len(S) % 4 == 0: 
          D[S] = len(S) 
for K in D: 
     print (K, D[K], sep = "#")
Concept: undefined - undefined
Chapter:
[2]23
[2]23.A
[1]23.A.i

Write the Python statement for the following task using built-in functions/method only:  

To remove the item whose key is "NISHA'' from a dictionary named Students
For example, if the dictionary Students contains {"ANITA": 90, "NISHA":76, "ASHA":92}, then after removal the dictionary should contain {"ANITA":90, "ASHA":92}

Concept: undefined - undefined
Chapter:
[1]23.A.ii

Write the Python statement for the following task using built-in functions/method only:

To display the number of occurrences of the substring "is" in a string named message
For example if the string message contains "This is his book" , then the output will be 3. 

Concept: undefined - undefined
Chapter:
OR
[2]23.B

A tuple named subject stores the names of different subjects. Write the Python commands to convert the given tuple to a list and thereafter delete the last element of the list. 

Concept: undefined - undefined
Chapter:
[2]24
[2]24.A

Ms. Veda created a table named Sports in a MySQL database, containing columns Game_id, P_Age and G_name.

After creating the table, she realized that the attribute, Category has to be added. Help her to write a command to add the Category column. Thereafter, write the command to insert the following record in the table:

Game_id: G42
P_Age: Above 18
G_name: Chess
Category: Senior 

Concept: undefined - undefined
Chapter:
OR
[2]24.B
[1]24.B.i

Write the SQL command to perform the following task:

View the list of tables in the database, Exam.

Concept: undefined - undefined
Chapter:
[1]24.B.ii

Write the SQL command to perform the following task:

View the structure of the table, Term1.

Concept: undefined - undefined
Chapter:
[2]25

Predict the output of the following code: 

def callon(b=20, a=10): 
    b=b+a
    a=b-a
    print(b, "#", a)
    return b
x=100
y=200
x=callon(x, y)
print(x, "@", y)
y=callon(y)
print(x, "@", y)
Concept: undefined - undefined
Chapter:
SECTION - C
[3]26

Write the output on execution Python code:

S="Racecar Car Radar" 
L=S.split() 
for W in L: 
     x=W upper() 
     if x==x [: :-1]: 
          for I in x:  
               print (I, end="*") 
     else: 
          for I in W: 
                print (I, end="#") 
print() 
Concept: undefined - undefined
Chapter:
Advertisements
[3]27

Consider the table ORDERS given below and write the output of the SQL queries that follow: 

ORDNO ITEM QTY RATE ORDATE
1001 RICE 23 120 2023-09-10
1002 PULSES 12 120 2023-10-18
1003 RICE 25 110 2023-11-17
1004 WHEAT 28 65 2023-12-25
1005 PULSES 16 110 2024-01-15
1006 WHEAT 27 55 2024-04-15
1007 WHEAT 25 60 2024-04-30
  1. SELECT ITEM, SUM (QTY) FROM ORDERS GROUP BY ITEM;
  2. SELECT ITEM, QTY FROM ORDERS WHERE ORDATE BETWEEN '2023-11-01 ' AND '2023-12-31';
  3. SELECT ORDNO, ORDATE FROM ORDERS WHERE ITEM = 'WHEAT' AND RATE>=60;.
Concept: undefined - undefined
Chapter:
[3]28
[3]28.A

Write a user defined function in Python named showInLines() which reads contents of a text file named STORY.TXT and displays every sentence in a separate line. 

Assume that a sentence ends with a full stop (.), a question mark (?), or an exclamation mark (!).

For example, if the content of file STORY.TXT is as follows: 

Our parents told us that we must eat vegetables to be healthy. And it turns out, our parents were right! So, what else did our parents tell?

Then the function should display the file's content as follows: 

Our parents told us that we must eat vegetables to be healthy.

And it turns out, our parents were right! So, what else did our parents tell?

Concept: undefined - undefined
Chapter:
OR
[3]28.B

Write a function, c_words() in Python that separately counts and displays the number of uppercase and lowercase alphabets in a text file, Words.txt.

Concept: undefined - undefined
Chapter:
[3]29

Consider the table Projects given below: 

                                      Table: Projects

P_Id Pname Language Startdate Enddate
P001 School Management System Python 2023-01-12 2023-04-03
P002 Hotel Management System C++ 2022-12-01 2023-02-02
P003 Blood Bank Python 2023-02-1 1 2023-03-02
P004 Payroll Management System Python 2023-03-12 2023-06-02 

Based on the given table, write SQL queries for the following:

  1. Add the constraint, primary key to column P_id in the existing table Projects.
  2. To change the language to Python of the project whose id is P002.
  3. To delete the table Projects from MySQL database along with its data.
Concept: undefined - undefined
Chapter:
[3]30

Consider a list named Nums which contains random integers.

Write the following user defined functions in Python and perform the specified operations on a stack named BigNums

  1. PushBig(): It checks every number from the list Nums and pushes all such numbers which have 5 or more digits into the stack, BigNums
  2. PopBig(): It pops the numbers from the stack, BigNums and displays them. The function should also display "Stack Empty" when there are no more numbers left in the stack.

For example: If the list Nums contains the following data:
Nums = [213, 10025, 167, 254923, 14, 1297653, 31498, 386, 92765]

Then on execution of PushBig(), the stack BigNums should store:
[10025, 254923, 1297653, 31498, 92765]

And on execution of PopBig(), the following output should be displayed:
92765
31498
1297653
254923
10025
Stack Empty 

Concept: undefined - undefined
Chapter:
SECTION - D
[4]31

Consider the tables Admin and Transport given below:

                       Table: Admin

S_id S_name Address S_type
S001 Sandhya Rohini Day Boarder
S002 Vedanshi Rohtak Day Scholar
S003 Vibhu Raj Nagar NULL
S004 Atharva Rampur Day Boarder 

            Table: Transport

S_id Bus_no Stop_name
S002 TSS10 Sarai Kale Khan
S004 TSS12 Sainik Vihar
S005 TSS10 Kamla Nagar 

Write SQL queries for the following:

  1. Display the student name and their stop name from the tables Admin and Transport.
  2. Display the number of students whose S_type is not known.
  3. Display all details of the students whose name starts with 'V'.
  4. Display student id and address in alphabetical order of student name, from the table Admin
Concept: undefined - undefined
Chapter:
[4]32

Sangeeta is a Python programmer working in a computer hardware company. She has to maintain the records of the peripheral devices. She created a csv file named Peripheral.csv, to store the details. The structure of Peripheral.csv is:

[P_id, P_name, Price] 
where
P_id is Peripheral device ID (integer)
P_name is Peripheral device name (String)
Price is Peripheral device price (integer)

Sangeeta wants to write the following user defined functions:

Add_Device(): to accept a record from the user and add it to a csv file, peripheral.csv.
Count_Device(): To count and display number of peripheral devices whose price is less than 1000.

Concept: undefined - undefined
Chapter:
SECTION - E
[5]33

Infotainment Ltd. is an event management company with its prime office located in Bengaluru. The company is planning to open its new division at three different locations in Chennai named as - Vajra, Trishula and Sudershana. 

You, as a networking expert need to suggest solutions to the questions in part (i) to (v), keeping in mind the distances and other given parameters.

Distances between various locations: 

Vajra to Trishula 350 m
Trishula to Sudershana 415 m
Sudershana to Vajra 300 m
Bengaluru Office to Chennai 2000 m

Number of computers installed at various locations:

Vajra 120
Sudershana 75
Trishula 65
Bengaluru Office to Chennai 250
  1. Suggest and draw the cable layout to efficiently connect various locations in Chennai division for connecting the digital devices.
  2. Which block in Chennai division should host the server? Justify your answer.
  3. Which fast and effective wired transmission medium should be used to connect the prime office at Bengaluru with the Chennai division?
  4. Which network device will be used to connect the digital devices within each location of Chennai division so that they may communicate with each other? 
  5. A considerable amount of data loss is noticed between different locations of the Chennai division, which are connected in the network. Suggest a networking device that should be installed to refresh the data and reduce the data loss during transmission to and from different locations of Chennai division. 
Concept: undefined - undefined
Chapter:
[5]34
[5]34.A
[2]34.A.i

Differentiate between 'w' and 'a' file modes in Python.

Concept: undefined - undefined
Chapter:
[3]34.A.ii

Consider a binary file, items.dat, containing records stored in the given format:

{item_id: [item_name, amount]}

Write a function, Copy_new(), that copies all records whose amount is greater than 1000 from items.dat to new_items.dat.

Concept: undefined - undefined
Chapter:
OR
[5]34.B
[2]34.B.i

What is the advantage of using with clause while opening a data file in Python? Also give syntax of with clause. 

Concept: undefined - undefined
Chapter:
[3]34.B.ii

A binary file, EMP.DAT has the following structure: 

[Emp Id, Name, Salary]
where
Emp_Id: Employee id
Name: Employee Name
Salary: Employee Salary
Write a user defined function, disp_Detail(), that would read the contents of the file EMP.DAT and display the details of those employees whose salary is below 25000. 

Concept: undefined - undefined
Chapter:
[5]35
[5]35.A
[1]35.A.i

Define cartesian product with respect to RDBMS.

Concept: undefined - undefined
Chapter:
[4]35.A.ii

Sunil wants to write a program in Python to update the quantity to 20 of the records whose item code is 111 in the table named shop in MySQL database named Keeper.

The table shop in MySQL contains the following attributes:

  • Item_code: Item code (Integer)
  • Item_name: Name of item (String)
  • Qty: Quantity of item (Integer)
  • Price: Price of item (Integer)

Consider the following to establish connectivity between Python and MySQL:

  • Username: admin 
  • Password: Shopping
  • Host: localhost
Concept: undefined - undefined
Chapter:
OR
[5]35.B
[1]35.B.i

Give any two features of SQL.

Concept: undefined - undefined
Chapter:
[4]35.B.ii

Sumit wants to write a code in Python to display all the details of the passengers from the table flight in MySQL database, Travel. The table contains the following attributes:

F_code: Flightcode(String)
F_name: Name of flight (String)
Source: Departure city of flight (String)
Destination: Destination city of flight (String)

Consider the following to establish connectivity between Python and MySQL.

  • Username: root
  • Password: airplane
  • Host: localhost
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 2023 - 2024

     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 2024 serve as a catalyst to prepare for your Computer Science (Python) board examination.
     Previous year Question paper for CBSE Class 12 Computer Science (Python)-2024 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×