11-IP (1)
11-IP (1)
INFORMATICS PRACTICES
Time –3:00 Hrs. Class – XI M.M. : 70
Date – 12.09.2024 (Thursday)
Name of the student _______________________________________________Section _____
General Instructions:
1. This question paper contains five sections, Section A to E.
2. All questions are compulsory.
3. Section A has 18 questions carrying 01 mark each.
4. Section B has 07 Very Short Answer type questions carrying 02 marks each.
5. Section C has 05 Short Answer type questions carrying 03 marks each.
6. Section D has 02 Long Answer type questions carrying 04 marks each.
7. Section E has 03 questions carrying 05 marks each.
8. All programming questions are to be answered using Python Language only.
SECTION - A
Q1 Which smaller unit of the CPU chip directs and coordinates all activities within it and
determines the sequence in which instructions are executed, sending instructions sequence to
other smaller unit.
a. CU b. ALU c. Processor d. All of these
Q2 A disk defragmenter is an example of
a. Application b. Language c. Utility software d. None of these
software processor
Q3 Which of the following makes available its source code?
a. Freeware b. Proprietary software c. OSS d. Customised software
Q4 Python code can run on a variety of platforms, it means python is a ______ language.
a. Graphical b. Cross-platform c. independent d. all of these
Q5 Which of the following is a keyword?
a. name b. Print c. while d. Input
Q6 To convert the read value through input() into integer type, _______() is used.
a. floating b. float c. int d. integer
Q7 What is the value of the expression 100 / 25?
a. 4 b. 4.0 c. 2.5 d. None of these
Q8 What is the value of the expression 100 // 25?
a. 4 b. 4.0 c. 2.5 d. None of these
Q9 What is the value of the expression 10 + 3 ** 3*2?
a. 28 b. 739 c. 829 d. 64
Q34 Give Python code to accept any integer and calculate sum of its digits. Ex: 356 Output: 14
OR
Differentiate between for loop and while loop. Give example code for each
Q35 Give python to accept 10 integer elements of a list, the value to be searched and count the
number of occurrences in the list.
Ex: Input
Enter 10 integers in list format: [1, 10, 20, 30, 10, 18, 10, 23, 5, 6]
Enter the value to be searched: 10
Output:
No of occurrences : 3
OR
Differentiate between sort() and sorted() methods of list with syntax and an example.