MS Ip Xi 01
MS Ip Xi 01
Class : XI
Subject : INFORMATICS PRACTICES
Section – A
1. (1 marks each from 1 to 18)
d) secondary memory
2 c) windows Os
3. d) string
4. a) 1x
5. a) True
6. c) /n
7. c) Keywords
8. b)12
9. c) Utility software
10. c) Free software
11. d) Literals
12. c) 4
13. b) Object Oriented
14 . a) sep
15. b) L=[ ]
16. c) pass
17. a) Statement A is True B is False
18 c) Statement A and B both are True
SECTION B
19. RAM is volatile memory. 2
Data in RAM can be modified, erased, or read. (1/2 marks for each difference)
ROM is non-volatile memory
Data in ROM can only be read, it cannot be modified or erased
Or (1/2 marks for each difference)
Interpreter: Interpreter is a type of system software that translates and executes instructions
written in a computer program lini-by-line, unit by unit etc.
It is slower in execution because each time when you run the program translation is required.
Compiler: Compiler is another type of system software that translates and executes instructions
written in a computer program in one go.
Once compiled program need not to translate again so
it works faster.
20. Proprietary refers to software that is owned by the individual or company who (1 for def. &1 example)
published it and require license. Ex- Microsoft Windows, Adobe Flash Player 2
21. Utilities are those application programs that assist the computer by performing housekeeping 2
functions like backing up disk or scanning/cleaning viruses or arranging information etc.
example - Antivirus software.
1
25.
num1 = float(input("Enter first number: ")) 1 marks for logic
num2 = float(input("Enter second number: ")) 1 marks for input output
num3 = float(input("Enter third number: "))
if (num1 > num2) and (num1 > num3):
largest = num1
elif (num2 > num1) and (num2 > num3):
largest = num2
else:
largest = num3
print("The largest number is",largest)
29: In print p should be lower case. (1 mark finding error and 1for each correction)
a) pow-The pow() function returns the value of x to the power of y (xy). (write example)
b) ceil- This function returns the smallest integral value greater than the number
32. Sequence ,Selection ,Iteration (Write name and explain with example)
33. L1=L1+4 - it will give error when anything other than list is added in list.
L1=L1*4 – it will replicate the list 4 times and store in list L1. Ex -L1=[1,2] then,
Or (1 mark each)
2
34. (i) An identifier must start with a letter or underscore followed by any number of digits and/or letters.
(iii) No special character (Other than underscore) should be included in the identifier.
or
35.
a)false b) 4
[9,7,5,3] 2
[1,2,3,4,5,6,7,8,9,10,3,4,5,2]
or
(a) L1[1]=17
(b) L1.append(4)
L1.append(6) 1 marks each
(c) list.pop(0)
(d) list.sort()
(e) list.insert(3,25)