Skip to content
TestMacher
Chapter 1 · Class 11 Informatics Practices

Computer Systems — Important Questions

34 questions With answers CBSE format

SUMMARY: The chapter "Computer Systems" in Class 11 Informatics Practices introduces students to the fundamental components and functions of computer systems.
KEY TOPICS: hardware components, software types, operating systems, input and output devices, storage devices, computer memory, system software, application software, computer networks, data processing.

Q1 1 Mark

The brain of a computer is the:

ARAM
BCPU
CHard disk
DMonitor
Check answerHide answer
Correct answer: Option 2 — CPU
Q2 1 Mark

Which of the following is volatile memory?

AROM
BHard disk
CRAM
DSSD
Check answerHide answer
Correct answer: Option 3 — RAM
Q3 1 Mark

The base of the binary number system is:

A8
B10
C2
D16
Check answerHide answer
Correct answer: Option 3 — 2
Q4 1 Mark

Which of the following is an example of system software?

AMS Word
BOperating System
CPhotoshop
DVLC Media Player
Check answerHide answer
Correct answer: Option 2 — Operating System
Q5 1 Mark

Which of the following converts source code into machine code line by line?

ACompiler
BInterpreter
CLinker
DAssembler
Check answerHide answer
Correct answer: Option 2 — Interpreter
Q6 3 Marks

Differentiate between RAM and ROM.

Q7 3 Marks

Convert decimal 25 to binary.

Q8 3 Marks

Differentiate between system software and application software with examples.

Q9 3 Marks

Differentiate between compiler and interpreter.

Q10 3 Marks

Define operating system. List any two examples.

Q11 6 Marks

Describe the basic components of a computer system with a block diagram.

Q12 6 Marks

Discuss the memory hierarchy in a computer system.

Q13 6 Marks

Discuss types of software with examples — system application and utility software.

Q14 6 Marks

Discuss any five functions of an operating system.

Q15 6 Marks

Convert decimal 156 to binary octal and hexadecimal showing the steps.

Q16 6 Marks

Differentiate between RAM and ROM in tabular form.

Q17 1 Mark

Assertion (A): Computers use binary number system.

Reason (R): Their digital circuits have only two stable states.

Show explanationHide explanation
Correct answer: Option 1 — Both A and R are true, and R is the correct explanation of A.
Q18 1 Mark

Assertion (A): SSDs are faster than HDDs.

Reason (R): SSDs have no moving mechanical parts.

Show explanationHide explanation
Correct answer: Option 1 — Both A and R are true, and R is the correct explanation of A.
Q19 1 Mark

Assertion (A): RAM is volatile memory.

Reason (R): Its contents are lost when power is switched off.

Show explanationHide explanation
Correct answer: Option 1 — Both A and R are true, and R is the correct explanation of A.
Q20 1 Mark

Assertion (A): An operating system manages hardware and software resources.

Reason (R): It also acts as an interface between user and hardware.

Show explanationHide explanation
Correct answer: Option 1 — Both A and R are true, and R is the correct explanation of A.
Q21 1 Mark

Assertion (A): A compiler translates the entire program before execution.

Reason (R): An interpreter translates and executes line by line.

Show explanationHide explanation
Correct answer: Option 1 — Both A and R are true, and R is the correct explanation of A.
Q22 1 Mark

Statement 1: Hardware refers to the physical parts.

Statement 2: Software refers to the programs.

Show answerHide answer
Correct answer: Option 1 — Both statements are true.
Q23 1 Mark

Statement 1: A bit is the smallest unit of information.

Statement 2: A byte consists of 8 bits.

Show answerHide answer
Correct answer: Option 1 — Both statements are true.
Q24 1 Mark

Statement 1: GUI stands for Graphical User Interface.

Statement 2: CLI stands for Command Line Interface.

Show answerHide answer
Correct answer: Option 1 — Both statements are true.
Q25 1 Mark

Statement 1: Linux is an open source operating system.

Statement 2: Its source code is freely available.

Show answerHide answer
Correct answer: Option 1 — Both statements are true.
Q26 1 Mark

Statement 1: Cache is faster than RAM.

Statement 2: It bridges the speed gap between CPU and main memory.

Show answerHide answer
Correct answer: Option 1 — Both statements are true.
Q27 3 Marks
A small business owner is buying 5 desktops for her staff. The shop offers two configurations. Config A has 8 GB RAM 256 GB SSD i5 processor. Config B has 16 GB RAM 512 GB SSD i7 processor at 25 percent higher cost. The staff use MS Office email and a browser-based ERP.
  1. Which configuration is more cost-effective for the workload described?
    AConfig A
    BConfig B
    CBoth equal
    DCannot decide
  2. Which factor most directly affects how many programs can be open at once?
    ARAM
    BSSD
    CCPU
    DAll equally
  3. Recommend a configuration and explain why each spec matters for the workload.
Show answersHide answers
1. Option 1 — Config A
2. Option 1 — RAM
3. Config A is sufficient for the workload (Office email browser ERP) and saves money. The owner can spend the savings on better monitors and keyboards. RAM is the most relevant spec because more RAM lets the OS keep more programs in memory without swapping. The CPU upgrade matters mainly for compute-heavy tasks like video editing or compiling code which the staff do not perform.
Q28 6 Marks

Identify the type of memory and one feature for each example.

MemoryTypeVolatile?
RAM?Yes
ROM?No
Cache??
Hard diskSecondary?
SSD??
Q29 5 Marks

Convert decimal numbers to binary.

DecimalBinary
5?
10?
25?
50?
100?
Q30 5 Marks

Match each operating system with its category.

OSCategory
Windows?
Linux?
macOS?
Android?
iOS?
Q31 5 Marks

Match each input device to its purpose.

Input devicePurpose
Keyboard?
Mouse?
Microphone?
Scanner?
Webcam?
Touchscreen?
Q32 3 Marks

Study the memory hierarchy diagram and answer:

Computer Systems figure
  1. The fastest storage in the hierarchy is:
    ARegisters
    BCache
    CRAM
    DHDD
  2. The volatile main memory is:
    ARAM
    BSSD
    CHDD
    DCache
  3. Explain the memory hierarchy with respect to speed cost and volatility.
Show answersHide answers
1. Option 1 — Registers
2. Option 1 — RAM
3. Memory hierarchy goes from fastest+smallest+expensive at the top to slowest+largest+cheapest at the bottom. Volatile memories (registers cache RAM) lose contents when power is off; non-volatile (SSD HDD) retain it. Modern systems use a mix.
Q33 3 Marks

Study the number systems conversion table and answer:

Computer Systems figure
  1. Decimal 100 in hexadecimal is:
    A64
    B100
    CFF
    D377
  2. Decimal 255 in binary is:
    A11111111
    B10000000
    C11110000
    D10101010
  3. Explain why hexadecimal is preferred over binary for representing large numbers.
Show answersHide answers
1. Option 1 — 64
2. Option 1 — 11111111
3. Computers use binary internally because circuits have two stable states. Octal (base 8) and hexadecimal (base 16) are convenient shorthand because each octal digit = 3 binary bits and each hex digit = 4 binary bits. Hex is used for memory addresses colour codes and machine code.
Q34 3 Marks

Study the hardware vs software Venn diagram and answer:

Computer Systems figure
  1. The category that bridges hardware and software is:
    AHardware
    BSoftware
    CFirmware
    DNetwork
  2. MS Office is an example of:
    AHardware
    BSoftware
    CFirmware
    D
  3. Differentiate between hardware software and firmware with examples.
Show answersHide answers
1. Option 3 — Firmware
2. Option 2 — Software
3. Hardware refers to physical components like CPU RAM hard disk and peripherals. Software refers to programs that run on hardware including operating systems and applications. Firmware is special software stored in hardware that bridges the two — examples include BIOS UEFI and device drivers.

Make a full Informatics Practices paper on Computer Systems.

Pick the question mix, set the marks, hit generate. You get a ready-to-print paper with an answer key.

Generate your paper — free