0% found this document useful (0 votes)
49 views

S6C Computer Science Practical Examination 2025

The S6C Computer Science Practical Examination for 2025 is scheduled for two groups on January 27th and 30th. Students must submit their Practical Report Files, Notebooks, and Posters before the exam and will solve 2 out of 3 Python programming questions within 40 minutes. They are required to create a MS Word document of their program codes and outputs, save it with their name, and submit printouts along with the exam paper to the supervisor.

Uploaded by

aladdinvszafar
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
49 views

S6C Computer Science Practical Examination 2025

The S6C Computer Science Practical Examination for 2025 is scheduled for two groups on January 27th and 30th. Students must submit their Practical Report Files, Notebooks, and Posters before the exam and will solve 2 out of 3 Python programming questions within 40 minutes. They are required to create a MS Word document of their program codes and outputs, save it with their name, and submit printouts along with the exam paper to the supervisor.

Uploaded by

aladdinvszafar
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

S6C Computer Science Practical Examination 2025

Group 1: Monday, 27th January, 2025


Group 2: Thursday, 30th January, 2025
(during Regular Practical Period)

Note:

 Students required to submit their Practical Report Files before the Practical examination.
 Students are also required to submit their Notebooks & Posters before Practical exam.
 During Hands on Practical Exam, students are required to solve any 2 out of the given 3
Python Programming Questions on Computer.
 Total time allocated for the Practical Examinations is ONLY (20+20) 40 Minutes
 Students will create a MS Word copy of the program codes along with screenshots of the outputs on the desktop.
 Students will save their file as <YOUR_FULL_NAME>.doc OR <YOUR_FULL_NAME>.docx
OR save as <YOUR_FULL_NAME>.pdf
 Students will also take the Printout of the Program Codes along with output screenshots.
 Students finally submit the Printouts along with this question paper to the exam supervisor.
Class XI - Computer Science Annual Practical Examination 2025
Computer Science (083)
SET - MOCK

Name : ___________________________________________ Class : ______ Date : _________

Note:

 Students must submit their Practical Report Files before the Practical examination.
 Students are also required to submit their Notebooks & Posters before Practical exam.
 Solve any 2 out of the given 3 Python Programming Questions on Computer.
 Create MS Word copy of the program codes along with screenshots of the outputs on the desktop.
 Save the file as <YOUR_FULL_NAME>.doc OR <YOUR_FULL_NAME>.docx OR save as <YOUR_FULL_NAME>.pdf
 Take the Printout of the Program Codes along with output screenshots.
 Submit the Printouts along with this question paper to the exam supervisor.

1: Write a Python program to sentence a string and encrypt the sentence as follows:
o All the words will be in reverse order
o Sequence of the words wouldn’t be changed.

If the entered string is: I love India


The output should be: I evol aidnI

2: Write a menu driven Python program to process a nested List as [ [ Name, Marks] , .. ]
and perform the following tasks:

o Append a student as [Name, Marks]


o Display all students
o Calculate and display average marks scored by all students.

3: Write a Python program to create a tuple of 24 values to store ball wise runs given by
a bowler in his 4 overs in a T20 match. The values (ball wise runs) will be entered by
the user. Your program then should display the number of dot balls along with number
of balls against each run scored.

If the entered tuple is (0,6,1,3,2,6,0,0,1,6,0,1,4,3,1,0,0,6,1,3,2,6,0,6)


The output should be:
{ 0:7, 1:5, 2:2, 3:3, 4:1, 6:6 }

You might also like