0% found this document useful (0 votes)
42 views5 pages

Class 11-Mid Term I

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
42 views5 pages

Class 11-Mid Term I

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 5

MID TERM I 2022-23

CLASS: XI COMPUTER SCIENCE MARK:40


1
TIME- 1 HRS
2

_______________________________________________________________________________________

MULTIPLE CHOICE QUESTIONS: (40×1=40)

1. When we work on any document on PC, it is stored temporarily in___________ memory

(a) RAM (b) ROM (c) CPU (d) CD-ROM

2.Which of the following memory is the fastest memory to access data?

(a) RAM (b) ROM (c) Register (d) Hard disk

3. Arrange the following measurement units of memory in ascending order as per their storage capacity?
BYTE, MB, GB, KB

(a) 1,2,3,4 (b) 4,3,2,1 (c) 1,4,2,3 (d) 1,4,3,2

4. Which of the following is not an example of system software?

a) Language Translator b) Utility Software

c) Communication Software d) Word Processors

5. Which of the following is not an operating system?

a) Windows b) Linux c) Oracle d) DOS

6. BIOS is used ___________.

a) By operating system b) By compiler

c) By interpreter d) By application software

7. Which of the following option is not a core data type in the python language?
a) Dictionary b) Lists c) Class d) All of above

8. Which of the following is an invalid variable?


a) my_string_1 b) 1st_string c) foo d) _

9. Which of the following cannot be a variable?


a) __init__ b) in c) it d) on

10. Data in computer terminology mean?


(a) Figure (b) Raw facts (c) Both a & b (d) None of these

11. The expression of a NAND gate is___________.

a) A.B b) A’B+AB’ c) (A.B)’ d) (A+B)’

12. A___________gate gives the output as 1 only if all the inputs signals are 1.

a) AND b) OR c) EXOR d) NOR

13. Boolean algebra is an algebraic structure with two arithmetic operations.

a) Addition and subtraction b) Subtraction and multiplication

c) Addition and multiplication d) Addition and division

14. When we convert 10010 binary numbers to decimals. Then the solution is :

a) 20 b) 18 c) 14 d) 16

15. Convert (22) from octal to its corresponding decimal equivalent.

a) 20 b) 18 c) 14 d) 81

16. Which out of the following binary number is equivalent to decimal number 24.

a) 11011 b) 11000 c) 11111 d) 11001

17. The octal equivalent of (13)10 is ___________

a) 18 b) 14 c) 15 d) 16

18. The result after converting the binary number (100011)2 to decimal will be

a) 30 b) 43 c) 35 d) None of the above

19. Conversion of hexadecimal number (69)16 to octal equivalent will be

a) 451 b) 351 c) 251 d) 151

20. Convert the binary number (100110)2 to hexadecimal equivalent is give

a) 46 b) 36 c) 26 d) 34

21. When we convert 0010010100 binary to octal. Then the solution is :

a) 201 b) 226 c) 224 d) 161

22. The result after converting the binary number (11011)2 to decimal will be

a) 27 b) 26 c) 25 d) None of the above


23. Conversion of hexadecimal number (A42)16 to octal equivalent will be

a) 5103 b) 5102 c)5101 d) 5001

24. Convert the binary number (11100.1010)2 to hexadecimal equivalent is give

a) 13.12 b) 1C.A c) 10C.A d) 1C.12

25. When we convert (10110.010) binary to octal. Then the solution is :

a) 26.2 b) 46.2 c) 27.2 d) 47.2

26. Convert hexadecimal (EB4A)16 to its equivalent octal

a) 165512 b) 156641 c) 165511 d) 165012

27. The decimal equivalent of binary number 0.0111 is

a) 4.375 b) 0.4375 c) 0.5375 d) -0.4375

28. The binary number 10011101 is equal to the decimal number

a) 151 b) 154 c) 157 d) 159

29. Convert in to decimal: (214)8 = ?

a) (140)10 b) (141)10 c) (142)10 d) (130)10

30. Which line of code produces an error?

a) “PythonMcq” + “12” b) ‘PythonMcq’ + 16

c) 3 + 7 d) ‘PythonMcq’ + “21”

31. What will be the output of the following snippet?

x, y="computer science" ,"python"

x, y=y,"class12"

print(x, y)

a) python class12 b) computer science python

c) class12 python d) python computer science

32. What will be the output of the following snippet?

list1=[10,100,150]

list1[0]=50

print(list1)
a) [10,50,100,50] b) [50,100,150] c) [50,10,100,150] d) TypeError

33. What will be the output of the following snippet?

str1="computer"

str1[1]="a"

print(str[0])

a) TypeError b) camputer c) aomputer d) computer

34. What will be the output of the following snippet?

m=40%6

n=m**2

r=m//n

m+=m+n+r

n+=m+n+r

r-=m+n+r

print(m,n,r)

a) 24 53 80 b) 24 56 -80 c) 24 53 -80 d) 24 56 80

35. Evaluate the above expression manually:

12%5*3+(2*6)/4

a) 9 b) 9.0 c) 12 d)12.0

36. What will be the output of the following snippet?

print("50<40 and 10>15:", 50<40 and 10>15)

a) 50<40 and 10>15: False b) True

c) 50<40 and 10>15: True d) False

37. What will be the output of the following snippet?

val=67

val+=5

val=3

val**=2
print(val)

a) 72 b) 72 9 c) 9 d) Error

38. find the output of the following

a="Computer Science"

print(a*2)

a) ComputerScience ComputerScience b) ComputerScienceComputerScience

c) Computer ScienceComputer Science d) Computer Science Computer Science

39. Select the reserved keyword in Python.

a) else b) import c) print d) all of these

40. The input( ) returns the value as ………. type.

a) integer b) string c) floating point d) none of these

You might also like