This document is a sample paper for the CBSE Class 11 Computer Science exam for the academic year 2024-25, consisting of 37 compulsory questions divided into five sections. The paper covers various topics in Python programming and computer science concepts, with questions ranging from multiple-choice to programming tasks. It is designed to assess students' understanding of Python and fundamental computer science principles.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
123 views4 pages
Sample Paper CBSE Class 11
This document is a sample paper for the CBSE Class 11 Computer Science exam for the academic year 2024-25, consisting of 37 compulsory questions divided into five sections. The paper covers various topics in Python programming and computer science concepts, with questions ranging from multiple-choice to programming tasks. It is designed to assess students' understanding of Python and fundamental computer science principles.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4
CBSE Class 11 Computer Science (083)
Sample Paper 2024-25
Maximum Marks: 70 Time Allowed: 3 Hours
General Instructions:
1. This question paper contains 37 questions.
2. All questions are compulsory. 3. The paper is divided into 5 Sections - A, B, C, D, and E. 4. Section A consists of 21 questions (1 to 21). Each question carries 1 mark. 5. Section B consists of 7 questions (22 to 28). Each question carries 2 marks. 6. Section C consists of 3 questions (29 to 31). Each question carries 3 marks. 7. Section D consists of 4 questions (32 to 35). Each question carries 4 marks. 8. Section E consists of 2 questions (36 to 37). Each question carries 5 marks. 9. All programming questions must be answered using Python only. 10. In case of MCQs, write the correct answer along with the option number.
SECTION A (1 Mark Each)
(21 Questions × 1 = 21 Marks)
Choose the correct answer for Q1 - Q10. Write the correct option along with the answer.
1. Which of the following is an immutable data type in Python?
a) List b) Dictionary c) Tuple d) Set
2. Which function is used to read user input in Python?
a) print() b) read() c) input() d) scan()
3. Which of the following is not a valid Python keyword?
a) for b) while c) repeat d) if
4. Which symbol is used for single-line comments in Python?
a) // b) /* */ c) # d) --
5. Which of the following data structures is unordered?
a) List b) Dictionary c) Tuple d) String
6. What will be the output of print(3 * "Hello")?
a) HelloHelloHello b) 3Hello c) Hello * 3 d) Error
7. Which function is used to find the length of a string in Python?
a) strlen() b) length() c) size() d) len()
8. What will bool([]) return?
a) True b) False c) None d) Error
9. Which method is used to remove an element from a list in Python?
a) pop() b) delete() c) remove() d) Both a) and c) 10. Which of the following is an example of system software? A) Microsoft Word B) Google Chrome C) Windows Operating System D) Adobe Photoshop
Answer the following questions in one sentence (Q11 - Q21):
11. What is the purpose of the range() function in Python?
12. Define a variable in Python. 13. What does the strip() function do in Python? 14. Write one difference between is and == operators in Python. 15. Define the term Identifier in Python. 16. What is a Boolean data type in Python? 17. What is the role of an interpreter in Python? 18. Mention two types of loops in Python. 19. Define Primary Memory. 20. What is a Flowchart? 21. What is Cybersecurity?
SECTION B (2 Marks Each)
(7 Questions × 2 = 14 Marks)
22. Differentiate between list and tuple in Python.
23. Explain the elif statement with an example. 24. What is type casting in Python? Give an example. 25. Write a Python program to check if a number is even or odd. 26. What is a dictionary in Python? How is it different from a list? 27. Convert the following: a) (1011)₂ to decimal b) (34)₁₀ to binary 28. Write a Python program to print the multiplication table of a number entered by the user.
SECTION C (3 Marks Each)
(3 Questions × 3 = 9 Marks)
29. Explain any three string methods in Python with examples.
30. What are break and continue statements in Python? Give an example for each. 31. Write a Python program to find the largest among three numbers entered by the user.
SECTION D (4 Marks Each)
(4 Questions × 4 = 16 Marks)
32. What is an operating system? Explain its major functions
33. Write a Python function that takes a string as input and returns the number of vowels in it. 34. What is Boolean Logic? Explain the following with truth tables: a) AND b) OR c) NOT d) XOR 35. Convert the decimal number 187 into its binary, octal, and hexadecimal equivalents. SECTION E (5 Marks Each) (2 Questions × 5 = 10 Marks)
36. Write a Python program to:
a) Accept a list of numbers from the user. b) Print the sum of all even numbers in the list. 37. What is Cybersecurity? Explain the following cyber threats: a) Phishing b) Malware c) Ransomware d) Firewall e) Digital Footprint