Total Pageviews

Friday, August 28, 2026

Chapter 2 : Number System St Jude's High School class -7

Created by Bijan Krishna Paul

Chapter 2: Number System

Section A: Multiple Choice Questions (30 Marks)

1. What is the base or radix of the Binary number system?

A) 10
B) 2
C) 8
D) 16

2. The Decimal number system uses how many total digits (0 through 9)?

A) 8
B) 10
C) 12
D) 16

3. Which number system has a base of 8 and consists of digits from 0 to 7?

A) Binary
B) Decimal
C) Octal
D) Hexadecimal

4. In the Hexadecimal number system, what letter represents the decimal value 10?

A) A
B) B
C) C
D) F

5. What is the base of the Hexadecimal number system?

A) 2
B) 8
C) 10
D) 16

6. What is the single binary digit (0 or 1) called in computer memory terminology?

A) Byte
B) Bit
C) Nibble
D) Word

7. A combination of 8 bits grouped together is called a:

A) Nibble
B) Byte
C) Kilobyte
D) Character

8. A group of 4 bits is specifically known as a:

A) Byte
B) Nibble
C) Bit
D) Sector

9. In binary addition, what is the result of 1 + 1?

A) 0 with a carry of 0
B) 1 with a carry of 0
C) 0 with a carry of 1
D) 1 with a carry of 1

10. What is the binary equivalent of the decimal number 5?

A) 100
B) 101
C) 110
D) 111

11. What is the binary equivalent of the decimal number 10?

A) 1010
B) 1001
C) 1100
D) 1110

12. Convert binary number (111)₂ into its equivalent Decimal number:

A) 5
B) 6
C) 7
D) 8

13. In binary subtraction, what is 1 - 1 equal to?

A) 0
B) 1
C) 10
D) Borrow 1

14. In binary subtraction, 0 - 1 requires borrowing 1 from the next higher position, making the value:

A) (10)₂ which equals decimal 2
B) (01)₂ which equals decimal 1
C) 0
D) -1

15. What is the product of binary multiplication 1 × 0?

A) 1
B) 0
C) 10
D) Carry 1

16. In Hexadecimal, what decimal value does the letter F represent?

A) 12
B) 14
C) 15
D) 16

17. To convert a Decimal number to Binary, we repeatedly divide the decimal number by:

A) 10
B) 2
C) 8
D) 16

18. When converting decimal to binary, the remainders are recorded from:

A) Top to bottom
B) Bottom to top (Reverse order)
C) Left to right only
D) Random order

19. In a positional number system, the rightmost digit is called the:

A) Most Significant Digit (MSD)
B) Least Significant Digit (LSD)
C) Highest Base Digit
D) Central Digit

20. In a positional number system, the leftmost digit with the highest positional weight is the:

A) Most Significant Digit (MSD)
B) Least Significant Digit (LSD)
C) Zero digit
D) Carry digit

21. Calculate the binary addition: (101)₂ + (011)₂:

A) (1000)₂
B) (1110)₂
C) (1100)₂
D) (1011)₂

22. What is the value of 2⁰ in positional place values?

A) 0
B) 1
C) 2
D) 10

23. Computer systems internal circuits are constructed using digital electronic switches that represent states:

A) ON (1) and OFF (0)
B) Positive (1) and Negative (-1)
C) High (10) and Low (8)
D) Open (A) and Closed (B)

24. Calculate binary subtraction: (110)₂ - (010)₂:

A) (100)₂
B) (010)₂
C) (101)₂
D) (001)₂

25. In binary arithmetic, what is 1 + 1 + 1 equal to?

A) 1 with a carry of 1 (11₂)
B) 0 with a carry of 1
C) 3 with no carry
D) 10 with no carry

26. Which symbol is NOT a valid digit in the Octal number system?

A) 0
B) 7
C) 8
D) 5

27. Calculate binary multiplication: (101)₂ × (10)₂:

A) (1010)₂
B) (1100)₂
C) (1001)₂
D) (1110)₂

28. Calculate binary division: (110)₂ ÷ (10)₂:

A) (11)₂
B) (10)₂
C) (1)₂
D) (100)₂

29. How is the Hexadecimal digit C represented in decimal?

A) 11
B) 12
C) 13
D) 14

30. Convert decimal number 12 into Binary:

A) 1100
B) 1010
C) 1110
D) 1001

Section B: Assertion & Reason Questions (30 Marks)

Directions: Choose the correct option for each question:

  • A: Both Assertion (A) and Reason (R) are true, and Reason (R) is the correct explanation of Assertion (A).
  • B: Both Assertion (A) and Reason (R) are true, but Reason (R) is NOT the correct explanation of Assertion (A).
  • C: Assertion (A) is true, but Reason (R) is false.
  • D: Assertion (A) is false, but Reason (R) is true.

31. Assertion (A): Computers process and store data internally using the Binary number system.
Reason (R): Computer circuits are made of digital electronic switches that easily represent two stable states: ON (1) and OFF (0).

32. Assertion (A): The number (89)₈ is a valid number in the Octal number system.
Reason (R): Octal number system uses only 8 digits, from 0 to 7, so digits 8 and 9 are invalid.

33. Assertion (A): In Hexadecimal, the letter 'E' represents the decimal value 14.
Reason (R): Hexadecimal uses digits 0-9 followed by letters A through F to represent values 10 to 15.

34. Assertion (A): In binary addition, 1 + 1 generates a sum of 0 and a carry of 1.
Reason (R): The decimal sum 2 is represented as (10)₂ in binary code.

35. Assertion (A): A group of 8 bits is referred to as a Nibble.
Reason (R): A Nibble consists of 4 bits, whereas a Byte consists of 8 bits.

36. Assertion (A): Decimal to binary conversion requires repeated division of the decimal number by 2.
Reason (R): The remainders collected from bottom to top form the target binary string.

37. Assertion (A): In binary subtraction, 0 - 1 = 1 with a borrow of 1 from the next higher position.
Reason (R): Borrowing 1 from the adjacent position converts the 0 into binary (10)₂, which equals decimal 2, and 2 - 1 = 1.

38. Assertion (A): Hexadecimal numbers are widely used by programmers to shorten long binary representations.
Reason (R): One single Hexadecimal digit can exactly represent a group of 4 binary bits.

39. Assertion (A): The base of any number system specifies the maximum number of unique symbols/digits used in that system.
Reason (R): Decimal number system has base 10 because it uses 10 distinct digits (0 to 9).

40. Assertion (A): Binary multiplication rules are completely different from elementary decimal multiplication.
Reason (R): Multiplying 1 × 0 or 0 × 1 in binary yields 0, exactly like decimal multiplication.

41. Assertion (A): The binary number (1010)₂ is equal to decimal 10.
Reason (R): (1 × 2³) + (0 × 2²) + (1 × 2¹) + (0 × 2⁰) = 8 + 0 + 2 + 0 = 10.

42. Assertion (A): Non-positional number systems rely on positional weights assigned to each digit location.
Reason (R): Non-positional number systems like Roman numerals use symbols with static values regardless of position.

43. Assertion (A): In the binary number 1101₂, the rightmost digit '1' represents the place value 2⁰ = 1.
Reason (R): In positional number systems, the rightmost digit is the Least Significant Digit (LSD) with weight base⁰.

44. Assertion (A): Binary division follows long division principles similar to decimal division.
Reason (R): Division by zero is valid and gives a quotient of 1 in binary arithmetic.

45. Assertion (A): The Octal system uses digits from 0 to 8.
Reason (R): Octal is a base-8 number system, so its digits range from 0 to 7.

46. Assertion (A): Converting a binary number to decimal involves multiplying each bit by increasing powers of 2.
Reason (R): Powers of 2 start from 2⁰ at the rightmost bit and increase by 1 for each position to the left.

47. Assertion (A): In Hexadecimal notation, 'B' corresponds to decimal 11.
Reason (R): The sequence goes A=10, B=11, C=12, D=13, E=14, F=15.

48. Assertion (A): 1 + 1 + 1 in binary yields a sum digit of 1 and a carry digit of 1.
Reason (R): Decimal 3 is converted to binary as 11₂ (1 group of 2 plus 1 unit).

49. Assertion (A): Binary arithmetic can only be performed on positive numbers.
Reason (R): Specialized techniques like 2's complement are used by computers to handle negative binary numbers.

50. Assertion (A): Any number raised to the power 0 equals 1.
Reason (R): Thus, 2⁰ = 1, 8⁰ = 1, 10⁰ = 1, and 16⁰ = 1 in positional expansions.

51. Assertion (A): The decimal equivalent of binary 100₂ is 4.
Reason (R): (1 × 2²) + (0 × 2¹) + (0 × 2⁰) = 4 + 0 + 0 = 4.

52. Assertion (A): Human beings naturally use the Decimal number system in daily counting.
Reason (R): The decimal system likely originated because humans have 10 fingers for counting.

53. Assertion (A): Binary subtraction 1 - 0 equals 0.
Reason (R): Subtracting 0 from any binary digit leaves the original digit unchanged.

54. Assertion (A): Hexadecimal digit '10' is written as 'A'.
Reason (R): Single-character symbols are required for values 10-15 to avoid confusion with two decimal digits.

55. Assertion (A): The most significant digit (MSD) carries the least weight in a number.
Reason (R): MSD is the leftmost digit in a positional number having the maximum positional weight.

56. Assertion (A): Binary multiplication 1 × 1 equals 1.
Reason (R): Multiplying two active ON state bits results in an active ON state bit.

57. Assertion (A): Octal conversion is often used as a convenient shorthand for binary numbers.
Reason (R): Each octal digit directly maps to a 3-bit binary sequence (since 2³ = 8).

58. Assertion (A): In binary division 101₂ ÷ 1₂, the answer is 101₂.
Reason (R): Dividing any binary number by 1 leaves the original binary number unchanged.

59. Assertion (A): The place values in binary system move right to left as 1, 2, 4, 8, 16, 32...
Reason (R): These positional weights represent powers of base 2 (i.e., 2⁰, 2¹, 2², 2³, 2⁴...).

60. Assertion (A): Binary addition is fundamental to all arithmetic operations in microprocessors.
Reason (R): Microprocessors perform subtraction, multiplication, and division internally through addition circuits.

Section C: Image & Visual Feature Based Questions (10 Marks)

61. Identify the division table structure visual:
2 | 25 | Remainder
2 | 12 | 1 (LSD)
2 | 6 | 0
2 | 3 | 0
2 | 1 | 1
| 0 | 1 (MSD)
Reading remainders from bottom to top, what is the binary equivalent of Decimal 25?

A) (11001)₂
B) (10011)₂
C) (11100)₂
D) (10101)₂

62. Observe the positional expansion chart visual:
Binary: 1 0 1 1
Weights: 2³ 2² 2¹ 2⁰
Values: 8 0 2 1
What is the total sum in decimal value?

A) 11
B) 13
C) 15
D) 9

63. Identify the binary addition vertical alignment visual:
1 1 (Carries)
1 0 1 1₂
+ 0 1 1 0₂
-----------
1 0 0 0 1₂
What is the decimal equivalent of the final result (10001₂)?

A) 17
B) 15
C) 21
D) 19

64. Scenario Visual: Rashmi is writing a program in memory representation using groups of 4 bits: 1010. What hexadecimal character represents this 4-bit nibble?

A) A
B) B
C) C
D) D

65. Identify the Hexadecimal mapping visual:
Hex Digit: 9 | A | B | C | D | E | F
Decimal: 9 | 10 | 11 | [?] | 13 | 14 | 15
What decimal value replaces the question mark [?] for Hex digit C?

A) 12
B) 13
C) 14
D) 16

66. Observe the binary subtraction with borrowing visual:
0 2 (Borrowed value)
1 0₂
- 0 1₂
-----
0 1₂
What is the decimal equivalent of binary 10₂ minus 01₂?

A) 1
B) 2
C) 0
D) 3

67. Scenario Visual: Mohit creates a table comparing memory storage sizes:
1 Bit = Single 0 or 1
4 Bits = 1 [ ? ]
8 Bits = 1 Byte
What term correctly fills the question mark [ ? ] for 4 bits?

A) Nibble
B) Word
C) Kilobyte
D) Sector

68. Identify the number system base classification visual:
Binary ➔ Base 2
Octal ➔ Base 8
Decimal ➔ Base 10
Hexadecimal ➔ Base [ ? ]
What base number fills the bracket [ ? ]?

A) 16
B) 12
C) 20
D) 64

69. Look at the binary multiplication layout visual:
1 1₂ (Decimal 3)
× 1 0₂ (Decimal 2)
-------
0 0
+ 1 1 0
-------
1 1 0₂ (Decimal [?])
What decimal value replaces [?] for the binary result 110₂?

A) 6
B) 5
C) 8
D) 4

70. Identify the digit significance labels in number (4582)₁₀:
4 ➔ Most Significant Digit (MSD)
2 ➔ Least Significant Digit (LSD)
What positional weight does the MSD digit '4' hold in this decimal number?

A) 10³ (1000)
B) 10⁰ (1)
C) 10¹ (10)
D) 10² (100)
Created by Bijan Krishna Paul

Chapter 1: Internal and External Hardware Components St Jude's High School class -7

Created by Bijan Krishna Paul

Chapter 1: Hardware and Software Components

Section A: Multiple Choice Questions (30 Marks)

1. The main circuit board inside a computer that holds the CPU, memory, and expansion slots is the:

A) Hard Disk
B) Motherboard
C) SMPS
D) Video Card

2. Which memory component loses its stored data when the power is turned off (volatile memory)?

A) ROM
B) RAM
C) Hard Disk
D) Flash Drive

3. Which CPU unit is responsible for controlling the operations of every other component and data transfer?

A) Arithmetic Logic Unit (ALU)
B) Control Unit (CU)
C) Memory Unit (MU)
D) Heat Sink

4. SMPS stands for:

A) Single-Mode Power System
B) Switched-Mode Power Supply
C) System Management Power Slot
D) Serial Module Power Switch

5. Which component is used in a CPU cabinet specifically to dissipate heat generated by the processor?

A) Heat Sink
B) Sound Card
C) Internal Modem
D) Network Card

6. A high-end scanner used primarily in the publishing industry that uses Photomultiplier Tube (PMT) technology is a:

A) Flatbed Scanner
B) Drum Scanner
C) Sheetfed Scanner
D) Handheld Scanner

7. Which output device prints by physically striking an inked ribbon against paper?

A) Laser Printer
B) Inkjet Printer
C) Impact Printer
D) Plotter

8. An optical disc format that uses a blue-violet laser and can hold up to 25 GB on a single layer is a:

A) CD-ROM
B) DVD-RW
C) Blu-Ray Disc
D) Hard Disk

9. Which port uses an RJ-45 connector and is used to connect a computer to a wired network or internet?

A) Serial Port
B) Ethernet Port
C) FireWire Port
D) VGA Port

10. HDMI stands for:

A) High Definition Multimedia Interface
B) High Data Memory Integration
C) Hybrid Display Media Insertion
D) Hard Disk Memory Interface

11. The port also known as IEEE 1394, developed by Apple Inc. to transfer data at up to 800 Mbps, is:

A) PS/2 Port
B) FireWire Port
C) VGA Port
D) Serial Port

12. ROM holds startup instructions that prepare a computer for use. This startup software is called:

A) BIOS
B) ALU
C) SMPS
D) VDU

13. A device that converts digital data into analog signals and vice versa for transmission over phone lines is a:

A) Plotter
B) Modem
C) Sound Card
D) Heat Sink

14. Which output device is specially used for printing large flex banners, engineering maps, and posters?

A) Dot Matrix Printer
B) Plotter
C) Projector
D) Flatbed Scanner

15. An optical mouse uses which light source technology to detect movement on a surface?

A) Rubber Ball
B) Light-Emitting Diode (LED)
C) Laser Pointer Tube
D) Photomultiplier Tube

16. A track location that passes vertically through all stacked platters in a hard disk drive is called a:

A) Sector
B) Cylinder
C) Arm
D) Cluster

17. What is the standard storage capacity of a conventional Compact Disc (CD)?

A) 4.7 GB
B) 700 MB
C) 25 GB
D) 1 TB

18. Which audio port on a computer allows connecting external speakers or headphones?

A) Line-in
B) Line-out
C) Mic port
D) VGA port

19. CPU speed is determined by the number of instructions it executes per second, measured in:

A) Megabytes (MB)
B) Gigahertz (GHz)
C) Bits per second (bps)
D) Pixels

20. Legacy PS/2 connectors were developed by IBM in 1987 specifically for attaching:

A) Monitors and Projectors
B) Keyboard and Mouse
C) Printers and Scanners
D) Speakers and Microphones

21. Rashmi wants to copy her school project file to take home. Which portable plug-and-play USB device should she use?

A) Pen Drive
B) Sound Card
C) SMPS
D) Internal Hard Disk

22. Which expansion component creates the images displayed on the screen and aids high-definition gaming?

A) Video Card (Graphics Card)
B) Network Interface Card
C) Sound Card
D) Heat Sink

23. Which component stores data using non-moving flash memory technology, operating much faster than traditional HDDs?

A) Solid State Drive (SSD)
B) Mechanical Hard Disk
C) CD-RW
D) Floppy Disk

24. A light-sensitive pointing device used to draw or point directly on CRT screens, mostly replaced by stylus pens, is a:

A) Light Pen
B) Web Camera
C) Optical Mouse
D) Trackball

25. What type of scanner is manually dragged over an image surface and requires a steady hand?

A) Handheld Scanner
B) Flatbed Scanner
C) Drum Scanner
D) Sheetfed Scanner

26. Which unit inside the CPU performs mathematical calculations and comparison logic?

A) Arithmetic Logic Unit (ALU)
B) Control Unit (CU)
C) Memory Unit (MU)
D) BIOS

27. Standard modern computer keyboards generally have how many keys?

A) 84
B) 104
C) 120
D) 50

28. The soft copy output on a monitor screen is made up of thousands of small colored dots called:

A) Pixels
B) Bits
C) Tracks
D) Sectors

29. Which port transfers data sequentially one bit at a time and was used for legacy modems and printers?

A) Serial Port
B) Parallel Port
C) Ethernet Port
D) HDMI Port

30. Hardware components that are installed inside the CPU cabinet are called:

A) External Hardware
B) Internal Hardware
C) Peripherals
D) Software

Section B: Assertion & Reason Questions (30 Marks)

Directions: Choose the correct option for each question:

  • A: Both Assertion (A) and Reason (R) are true, and Reason (R) is the correct explanation of Assertion (A).
  • B: Both Assertion (A) and Reason (R) are true, but Reason (R) is NOT the correct explanation of Assertion (A).
  • C: Assertion (A) is true, but Reason (R) is false.
  • D: Assertion (A) is false, but Reason (R) is true.

31. Assertion (A): RAM is called volatile memory.
Reason (R): Information stored in RAM is lost permanently when power supply is switched off.

32. Assertion (A): ROM is non-volatile memory.
Reason (R): Data in ROM can be modified and rewritten continuously by standard user programs.

33. Assertion (A): SMPS converts incoming AC mains voltage into regulated low-voltage DC power.
Reason (R): Computer internal electronics require stable direct current (DC) for safe functioning.

34. Assertion (A): The motherboard is known as the main circuit board of a computer.
Reason (R): It serves as a single platform connecting CPU, RAM, disk drives, and expansion cards together.

35. Assertion (A): Drum scanners are widely used in personal homes and small offices.
Reason (R): Flatbed scanners are affordable and suitable for standard office document scanning.

36. Assertion (A): Plotters produce high-precision vector graphics using moving pens.
Reason (R): They are ideal for printing large architectural maps, engineering designs, and flex banners.

37. Assertion (A): Impact printers offer superior photo print quality compared to laser printers.
Reason (R): Impact printers work by striking an inked ribbon against paper physically.

38. Assertion (A): FireWire ports are used to transfer data at high speeds with devices like digital video cameras.
Reason (R): FireWire (IEEE 1394) was developed by Apple Inc. and can connect up to 63 devices.

39. Assertion (A): HDMI carries both high-definition video and multi-channel digital audio over a single cable.
Reason (R): HDMI is designed to connect modern HD monitors, TVs, and gaming consoles to computers.

40. Assertion (A): Solid State Drives contain magnetic platters that spin at high RPMs.
Reason (R): SSDs utilize flash memory chips without moving mechanical parts for faster access times.

41. Assertion (A): Heat Sink dissipates heat away from high-temperature electronic chips like CPUs.
Reason (R): Excessive heat can cause electronic processors to malfunction or sustain permanent damage.

42. Assertion (A): Blu-Ray discs get their name from the red laser used to scan data layers.
Reason (R): Blue-violet laser light has a shorter wavelength, allowing tighter data packing on discs.

43. Assertion (A): Optical mice contain a small rubber ball underneath to sense surface motion.
Reason (R): Optical mice use an LED light source and sensor to track movement digitally.

44. Assertion (A): Input devices translate incoming user data into binary code for CPU processing.
Reason (R): Computer hardware circuits operate exclusively on binary signals (0s and 1s).

45. Assertion (A): Ethernet ports utilize RJ-45 connectors to establish wired LAN connections.
Reason (R): RJ-45 connectors resemble telephone RJ-11 connectors but are slightly larger with 8 pins.

46. Assertion (A): Internal modems are installed outside the computer cabinet in a separate box enclosure.
Reason (R): External modems connect via USB ports and feature speed indicator lights.

47. Assertion (A): The Arithmetic Logic Unit (ALU) holds temporary data required during active processing.
Reason (R): Memory Unit (MU) holds instructions temporarily while ALU performs calculations.

48. Assertion (A): Peripherals refer to external hardware components attached to a computer.
Reason (R): Examples of peripherals include keyboards, mice, printers, and external pen drives.

49. Assertion (A): Modern keyboards connect primarily through legacy serial ports.
Reason (R): Universal Serial Bus (USB) ports have universally replaced serial and PS/2 ports.

50. Assertion (A): Software represents the physical components of a computer that can be seen and touched.
Reason (R): Hardware consists of the physical mechanical and electronic machinery of a computer.

51. Assertion (A): High CPU clock speed generally correlates with faster instruction execution.
Reason (R): Processor clock speed is measured in Gigahertz (GHz), denoting cycles per second.

52. Assertion (A): Hard disk platters feature individual read/write heads on both sides.
Reason (R): All access arm heads are linked together to move simultaneously across tracks.

53. Assertion (A): Non-impact printers make noise by hammering pins onto paper ribbons.
Reason (R): Inkjet and laser printers print without direct mechanical contact against paper.

54. Assertion (A): Projectors are output devices that project computer images onto large screens or walls.
Reason (R): They are widely utilized in classrooms, theaters, and corporate presentations.

55. Assertion (A): Line-in audio port allows connecting external microphones to record voice.
Reason (R): Mic port is designated for connecting microphones, while Line-in connects audio players.

56. Assertion (A): Sheetfed scanners scan stacks of loose document pages rapidly.
Reason (R): They incorporate automatic document feeder mechanisms similar to compact printers.

57. Assertion (A): VGA connectors contain 15 pins that fit into matching serial holes.
Reason (R): VGA ports carry analog video signals to CRT or LCD monitors.

58. Assertion (A): Printed output generated on paper is termed a soft copy.
Reason (R): Visual display shown on a monitor screen is referred to as a soft copy.

59. Assertion (A): A Sound Card converts internal digital audio files into audible analog signals.
Reason (R): Speakers and headphones require analog electrical signals to generate sound waves.

60. Assertion (A): A pen drive connects via the Universal Serial Bus (USB) port.
Reason (R): USB ports provide standardized plug-and-play connectivity for external devices.

Section C: Image & Visual Feature Based Questions (10 Marks)

61. Identify the motherboard component diagram feature:

[ Microprocessor Chip ] ➔ [ Millions of Transistors ] ➔ Mounted directly on Printed Circuit Board (PCB)

Which central internal component is represented here?

A) Central Processing Unit (CPU)
B) Switched-Mode Power Supply (SMPS)
C) Sound Card
D) Hard Disk Drive

62. Look at the RAM stick visual specification:
[ DDR4 RAM Stick | 8 GB Capacity | Volatile Memory Chip ]
What happens to data in this stick during a power outage?

A) Automatically saved to ROM
B) Lost completely
C) Written to BIOS
D) Transferred to DVD

63. Identify the hard disk internal structure diagram:

• Stacked Platters
• Read/Write Access Arm
• Vertical track alignment across platters = [ ? ]

What is the term for this vertical track alignment?

A) Cylinder
B) Sector
C) PCB
D) Pixel

64. Visual interface icon representing a port: 🟦 (15-hole D-sub blue port). Which legacy video port is this?

A) VGA Port
B) HDMI Port
C) Ethernet Port
D) FireWire Port

65. Identify the scanner type visual:
[ Glass Window + Bright Light + Charged Coupled Device (CCD) + Flip-up Cover ]
Which popular scanner used in homes and schools is this?

A) Flatbed Scanner
B) Drum Scanner
C) Handheld Scanner
D) Barcode Reader

66. Observe the power regulation device in the CPU cabinet with a built-in cooling fan: 🔌 SMPS. What is its main role?

A) Supplies regulated low-voltage DC power
B) Plays 3D audio effects
C) Connects to wireless Wi-Fi
D) Reads optical Blu-Ray discs

67. Look at the audio port color-coding diagram:
[ Blue: Line-in | Green: Line-out | Pink: Mic port ]
Which color port should you plug headphones into?

A) Green (Line-out)
B) Pink (Mic port)
C) Blue (Line-in)
D) Yellow (VGA)

68. Real-life Scenario Visual: Mohit wants to record his voice for a school computer project. Which input device must he plug into the mic port?

A) Microphone
B) Web Camera
C) Projector
D) Plotter

69. Identify the port visual with 8 pins, slightly larger than telephone RJ-11: 🌐 RJ-45 Ethernet Port. What connection is it used for?

A) Wired Network / LAN
B) Analog Monitor Output
C) PS/2 Mouse Input
D) Speaker Line-out

70. Real-life Scenario Visual: Rashmi wants to digitize an old paper photograph to upload onto her computer. Which peripheral device should she use?

A) Scanner
B) Plotter
C) Dot Matrix Printer
D) Heat Sink