0
0

Number System Basics

Introduction

கணினிகள் மனிதர்கள் புரிந்துகொள்ளும் முறையில் எண்களை புரிந்துகொள்ளாது. data-ஐ சேமிக்கவும் செயலாக்கவும், கணினிகள் குறிப்பிட்ட number systems ஐ பயன்படுத்துகின்றன. இந்த pattern, Computer Aptitude தேர்வுகளில் direct factual questions ஆக அடிக்கடி கேட்கப்படும் மிக அடிப்படை கருத்துகளை அறிமுகப்படுத்துகிறது.

இந்த நிலை வரை எந்தவிதமான கடின conversion-களும் தேவையில்லை- கருத்து தெளிவு இருந்தால் போதும், மதிப்பெண் பெற முடியும்.

Pattern: Number System Basics

Pattern

கணினிகள் அனைத்து data-வையும் பிரதிநிதித்துவப்படுத்த binary number system (0 மற்றும் 1) ஐ பயன்படுத்துகின்றன, இதில் 8 bits ஒன்றாக சேர்ந்தால் ஒரு byte ஆகும்.

Step-by-Step Example

Question

ஒரு byte-ஐ உருவாக்க எத்தனை bits தேவை?

Options:

  • A. 4 bits
  • B. 6 bits
  • C. 8 bits
  • D. 16 bits

Solution

  1. Step 1: அடிப்படை வரையறைகளை நினைவுகூர்க

    bit என்பது data-வின் மிகச் சிறிய அலகு; அது 0 அல்லது 1 ஆக பிரதிநிதித்துவப்படுத்தப்படுகிறது.
  2. Step 2: நிலையான grouping-ஐ அடையாளம் காண்க

    data-ஐ எளிதாக கையாள bits ஒன்றாக சேர்த்து byte உருவாக்கப்படுகிறது.
  3. Step 3: நிலையான விதியை பயன்படுத்துக

    ஒரு byte எப்போதும் 8 bits கொண்டதாகும்.
  4. Final Answer:

    8 bits → Option C
  5. Quick Check:

    1 character ≈ 1 byte → 8 bits என உறுதி ✅

Quick Variations

1. கணினிகள் பயன்படுத்தும் number system → Binary.

2. Binary system-இல் பயன்படுத்தப்படும் digits → 0 மற்றும் 1.

3. Decimal system digits → 0 முதல் 9 வரை.

4. 1 nibble → 4 bits.

Trick to Always Use

  • Step 1 → கணினி representation குறிப்பிடப்பட்டால், Binary என்று நினைக்கவும்.
  • Step 2 → bit-byte தொடர்பு கேட்டால், 1 byte = 8 bits என்பதை நினைவில் வையுங்கள்.
  • Step 3 → conversion கேட்கப்படவில்லை என்றால், அதிகமாக யோசிக்க வேண்டாம்.

Summary

Summary

  • கணினிகள் binary number system ஐ பயன்படுத்துகின்றன.
  • Binary system-இல் 0 மற்றும் 1 மட்டுமே உள்ளன.
  • ஒரு byte = 8 bits.
  • பெரும்பாலான கேள்விகள் நேரடியான வரையறை அடிப்படையிலானவை.

நினைவில் வைத்துக்கொள்ள ஒரு உதாரணம்:
Binary = 0 & 1, மற்றும் 1 Byte = 8 Bits.

Practice

(1/5)
1. Which number system is used internally by computers to process data?
easy
A. Binary
B. Decimal
C. Octal
D. Hexadecimal

Solution

  1. Step 1: Recall how computers work

    Electronic circuits operate using two states: ON and OFF.
  2. Step 2: Match states with digits

    ON and OFF are represented as 1 and 0.
  3. Final Answer:

    Binary → Option A
  4. Quick Check:

    0 and 1 represent electrical states → binary confirmed ✅
Hint: Computer logic = 0 and 1 → Binary.
Common Mistakes: Choosing decimal because humans commonly use it.
2. How many bits are there in one nibble?
easy
A. 2 bits
B. 4 bits
C. 8 bits
D. 16 bits

Solution

  1. Step 1: Recall basic definitions

    A nibble is half of a byte.
  2. Step 2: Use byte-bit relationship

    1 byte = 8 bits.
  3. Final Answer:

    4 bits → Option B
  4. Quick Check:

    Half of 8 bits = 4 bits → nibble confirmed ✅
Hint: Nibble = half byte = 4 bits.
Common Mistakes: Confusing nibble with byte.
3. Which of the following digits are used in the binary number system?
easy
A. 0 and 1
B. 0 to 7
C. 0 to 9
D. 0 to 15

Solution

  1. Step 1: Identify binary digits

    Binary system is base-2.
  2. Step 2: Recall allowed digits

    Only two digits are used.
  3. Final Answer:

    0 and 1 → Option A
  4. Quick Check:

    Base-2 system uses only two symbols ✅
Hint: Binary = Base 2 = digits 0 and 1.
Common Mistakes: Selecting decimal digits due to habit.
4. Which number system uses digits from 0 to 9?
medium
A. Binary
B. Octal
C. Decimal
D. Hexadecimal

Solution

  1. Step 1: Recall human-used number system

    Everyday counting uses ten digits.
  2. Step 2: Match with system name

    Digits 0 to 9 define the decimal system.
  3. Final Answer:

    Decimal → Option C
  4. Quick Check:

    Base-10 system → decimal confirmed ✅
Hint: Digits 0-9 = Decimal.
Common Mistakes: Confusing octal with decimal.
5. How many bits are there in one byte?
medium
A. 4 bits
B. 6 bits
C. 8 bits
D. 16 bits

Solution

  1. Step 1: Recall standard definition

    A byte is a basic unit of storage.
  2. Step 2: Apply the fixed relationship

    One byte always equals 8 bits.
  3. Final Answer:

    8 bits → Option C
  4. Quick Check:

    1 character ≈ 1 byte → 8 bits verified ✅
Hint: 1 Byte = 8 Bits (always).
Common Mistakes: Mixing nibble and byte values.

Mock Test

Ready for a challenge?

Take a 10-minute AI-powered test with 10 questions (Easy-Medium-Hard mix) and get instant SWOT analysis of your performance!

10 Questions
5 Minutes