0% found this document useful (0 votes)
583 views11 pages

Class 11 Computer Science MCQs

This document contains 40 multiple choice questions about computer science topics like information processing, computer memory, operating systems, programming, logic gates, and number systems. The questions cover definitions of common computer science terms, identifying examples, and evaluating simple code snippets or logic expressions. The correct answers are indicated with a check mark.

Uploaded by

prateekurmaliya5
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)
583 views11 pages

Class 11 Computer Science MCQs

This document contains 40 multiple choice questions about computer science topics like information processing, computer memory, operating systems, programming, logic gates, and number systems. The questions cover definitions of common computer science terms, identifying examples, and evaluating simple code snippets or logic expressions. The correct answers are indicated with a check mark.

Uploaded by

prateekurmaliya5
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

Computer science class 11 mcq’s

1. What is information?

a) Processed Data ✓

b) Collection of a Program

c) Raw Data

d) Collection of Instructions

2. Full form of IPO

a) Input Process Output ✓

b) Input Print Output

c) Internet Print Output

d) Internet process Output

3. When we work on any document on PC, it is stored temporarily in______


memory.

a) RAM ✓

b) ROM

c) CPU

d) CD-ROM

4. Smallest measurement unit of computer memory is?

a) Megabyte

b) Bit ✓

c) Byte
d) Nibble

5. Full form of USB

a) Uniform Service Bus

b) Universal Serial Bus ✓

c) Universal Sector Buffer

d) Universe Service Bus

6. Which of the following is designed to control the operations of a computer?

a) Application Software

b) System Software✓

c) Utility Software

d) User

7. What do you call a program in execution?

a) Command

b) Process✓

c) Task

d) Instruction

8. Which of the following is a single-user operating system?

a) Windows

b) MAC

c) Ms-Dos ✓

d) None of these

9. What is Microsoft window?


a) Operating system✓

b) Graphics program

c) Word Processing

d) Database program

10. Which of the following is system software?

a) Operating system

b) Compiler

c) Utilities

d) All the above ✓

11. What is the output of this expression, 3*1**3?

a) 27

b) 9

c) 3 ✓

d) 1

12. F = [ 4, 8, 9, 2.6, 5 ] is a type of which data type in python?

a) List✓

b) Tuple

c) Set

d) None of these

13. The expression of a NAND gate is_______

a) B

b) A’B+AB’

c) (A.B)’ ✓
d) (A+B)’

14. The symbol + in Boolean is also known as the ____________ operator.

a) AND

b) OR ✓

c) EXOR

d) NOR

15. Boolean algebra is define as a set of ______________

a) One value

b) Two value ✓

c) Three value

d) Four value

16. Name the number system which uses alphabets as well as numerical.

a) Binary number system

b) octal number system

c) Decimal number system

d) Hexadecimal number system ✓

17. Which one of the following is a valid Python if statement :

a) if a>=2 : ✓

b) if (a >= 2)

c) if (a => 22)

d) if a >= 22

18. Which of following is not a decision-making statement?


a) if-elif statement

b) for statement ✓

c) if -else statement

d) if statement

19. Predict the output of the following code:

x=3

if x>2 or x<5 and x==6:

print(“ok”)

else:

print(“no output”)

a) ok ✓

b) okok

c) no output

d) none of above

20. Predict the output of the following code:

x,y=2,4

if(x+y= =10):

print(“true”)

else:

print(“false”)

a) true

b) false✓

c) no output

d) none
21. Which of the following is an invalid identifier in Python

a) H_e_wel_123

b) Assert

c) _

d) in✓

22. Which of the following is an invalid keyword in Python

a) eval

b) Assert✓

c) nonlocal

d) import

23. Which of the following is invalid statement in Python

a) _hello_=25

b) __he_123=25

c) _m=25

d) None of the mentioned✓

24. Evaluate the following expression : 3+4*2%8+12//6-2%9**2**1

a) 11

b) 3✓

c) 17

d) 1

25. Which of the following is a valid membership operator in Python

a) and

b) or
c) in ✓

d) like

26. Write the output of the following code segment :

for i in range(-1,-6,-5):

print(i*i)

a) 1✓

b) 1 2

c) Error

d) Infinite loop

27. Give output:

for a in range(1,5):

print(“a”, end=” “)

a) 1 2 3 4

b) 1 2 3 4 5

c) a a a a ✓

d) a a a a a

28. Give output:

for i in range(2,7,2):

print(i * ‘2’)

a) 222222222222 ✓

b) 2222222222

c) 22222222222222

d) 2222222222222222
29. Give output:

print(“My” *3 + “life” +’7′)

a) MyMyMylifelifelifelifelife

b) MyMyMylifelifelifelifelifelifelife

c) MyMyMyMyMyMyMylifelifelife

d) MyMyMylife7 ✓

30. Give output:

print(“Super”+’Dad’ * 2)

a) SuperDad2

b) SuperSuperDad

c) SuperDadDad ✓

d) Error

31. Give output:

print(“Mahatma”[3:])

a) Maha

b) Mah

c) atma✓

d) ATMA

32. Identify the gate:

a) AND
b) NAND✓

c) XOR

d) XNOR

33. Identify the gate:

a) OR

b) NOR

c) XOR ✓

d) XNOR

34. Identify the result generated :

a) NOR GATE

b) NAND GATE

c) AND GATE ✓

d) NOT GATE

35. Identify the value of F3:


a) x y x + x’ + y’ + z’

b) xy’ + x’z’

c) x’y’ + x’z’

d) xy’ + x’z ✓

36. Which of the following number system is known as base-10 system?

a) Binary Number System

b) Hexadecimal Number System

c) Octal Number System

d) Decimal Number System ✓

37. Which of the following is not an example/s of binary numbers?

a) 010101

b) 11100.01

c) 111001

d) None of the above ✓

38. Which of the following is not an example of Hexadecimal number?

a) 1C2

b) 67GA✓

c) 1

d) None
39. bit binary code for binary number 15 is ___________

a) 1110

b) 1111 ✓

c) 1100

d) 1101

40. Octal equivalent of decimal number 1128 is __________

a) 1250

b) 2150 ✓

c) 2110

d)2250

Common questions

Powered by AI

Python's list data type contributes to its versatility by allowing for the storage of multiple data types in an ordered sequence, which can be modified (mutable). This capability enables programmers to efficiently manage collections of items, perform operations such as iteration and indexing with ease, and utilize powerful built-in functions to manipulate data, greatly enhancing Python's adaptability in solving complex programming tasks .

When working on a document in a computer, it is stored temporarily in RAM, which allows for quick read and write access by the processor . This temporary storage ensures that applications can run efficiently, facilitating real-time changes and editing, as well as reducing load times when accessing the document during the session .

Boolean algebra is unique in that it defines a set of two values, typically represented as 0 and 1, which correspond to false and true, respectively . This binary nature is distinct from other mathematical systems, such as the decimal system, which involves a range of values (0-9). Its application is vital in designing circuits and performing logical operations in computing .

System software is designed to control the operations of a computer by managing hardware components, providing a platform for running application software, and executing fundamental functions necessary for computer operation . It includes operating systems, which coordinate all activities among computer hardware resources, and utility software, which assists in managing system resources effectively .

The hexadecimal number system, known as base-16, plays a vital role in computing by providing a more compact and human-readable representation of binary-coded information . It is preferred in contexts such as memory addresses and color codes in web design because it reduces the length of binary numbers, making them easier to manage and interpret. Each hexadecimal digit represents four binary digits, simplifying the conversion and understanding of binary data .

The output of the Python expression 3+4*2%8+12//6-2%9**2**1 is 3 . This result is significant because it demonstrates operator precedence and associativity rules in Python, where operations are performed in a specific order: exponentiation, multiplication, division, remainder (modulus), addition, and subtraction. Understanding these rules is crucial for writing correct expressions that evaluate as intended in Python programs .

The primary purpose of the Universal Serial Bus (USB) is to establish a standardized interface for connecting peripherals to computers, allowing for the transfer of data and power between devices . This universality facilitates ease of use, compatibility across a wide range of devices, and supports plug-and-play functionality, making it a critical component in modern computing environments .

Understanding the NAND gate expression, which is given by (A.B)' , is crucial because the NAND gate is a fundamental building block in the design of digital systems and circuits. It is functionally complete, meaning that any logical operation can be constructed using only NAND gates. This significance is highlighted by its use in creating logic circuits and in the simplification and troubleshooting of complex circuit designs .

Using a single-user operating system like MS-DOS in modern environments would present significant limitations, such as lack of multi-tasking capabilities, inability to handle network operations efficiently, and inadequate support for contemporary software applications, which are designed for systems supporting multi-threading and modern architectures . This results in inefficiency and constraints in resource utilization, making it impractical for today's demand in personal and business computing .

The expression 3*1**3 evaluates to 3, exemplifying Python's order of operations . In this context, the exponentiation operation (**) is performed first, followed by the multiplication (*). The calculation is processed as 3*(1**3), resulting in 3*1, which equals 3. This reflects Python's adherence to the precedence rules where exponentiation supersedes multiplication .

You might also like