TECHNOLOGY 

Published on

Computer Technology - Hexadecimal Data

Hexadecimal notation is a number system commonly used in computing. Each hexadecimal digit can store 16 possible values, which makes it more compact than binary and useful for representing computer data in a shorter form.

Hexadecimal is also called base 16 because each digit has 16 possible values.

1. What Is Hexadecimal?

Hexadecimal is a number system used in computing where each digit can represent 16 different values.

These values range from 0 to 15. Since a single digit cannot normally show values like 10, 11, 12, 13, 14, and 15 using only numbers, hexadecimal uses letters to represent them.

2. Hexadecimal Values

In hexadecimal:

Hex Digit Decimal Value
0 0
1 1
2 2
3 3
4 4
5 5
6 6
7 7
8 8
9 9
A 10
B 11
C 12
D 13
E 14
F 15

3. Why Are Letters Used?

In decimal, one digit can only represent values from 0 to 9. But hexadecimal needs 16 symbols.

To solve this, hexadecimal uses:

  • 0–9 for values 0–9
  • A–F for values 10–15

This allows one hexadecimal digit to represent a larger range of values than one decimal digit.

4. Example

A single hexadecimal digit can hold one of these 16 possible values:

0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F

For example:

  • A = 10
  • B = 11
  • C = 12
  • D = 13
  • E = 14
  • F = 15

This is why hexadecimal is very useful in computing—it can represent data more compactly than binary.

Summary

  • Hexadecimal is a base 16 number system
  • Each digit can represent 16 values
  • It uses 0–9 and A–F
  • A–F represent decimal values 10–15
  • Hexadecimal is useful because it is shorter and easier to read than binary
Picture
Published on

Computer Technology - Number Systems (Base 2, Base 10, Base 8, Base 16)

Computers use different number systems to represent and process data. Each number system is based on a specific base, which determines the digits used and how values increase. Although all number systems follow the same concept, they differ in their base and how numbers are represented.

All number systems work in a similar way: they use a set of digits, and each position in the number represents a power of the base.

1. Base 2 (Binary)

Binary is the number system used by computers internally.

  • Digits used: 0, 1
  • Base: 2
  • Place values: Powers of 2 (1, 2, 4, 8, 16, ...)

Each position in a binary number is 2 times larger than the previous one.

Example:

Binary 1011
= (1 × 8) + (0 × 4) + (1 × 2) + (1 × 1)
= 11 (decimal)

Use: All computer data, including text, images, and programs, is stored in binary form.

2. Base 10 (Decimal)

Decimal is the number system used in everyday life.

  • Digits used: 0–9
  • Base: 10
  • Place values: Powers of 10 (1, 10, 100, 1000, ...)

Each position is 10 times larger than the previous one.

Example:

345
= (3 × 100) + (4 × 10) + (5 × 1)

Use: Human counting, calculations, and everyday use.

3. Base 8 (Octal)

Octal is a simplified way of representing binary numbers.

  • Digits used: 0–7
  • Base: 8
  • Place values: Powers of 8 (1, 8, 64, 512, ...)

Each position is 8 times larger than the previous one.

Example:

17 (octal)
= (1 × 8) + (7 × 1)
= 15 (decimal)

Use: Sometimes used in computing systems, such as file permissions.

4. Base 16 (Hexadecimal)

Hexadecimal is a compact and human-friendly way to represent binary data.

  • Digits used: 0–9 and A–F
  • Letter values: A = 10, B = 11, C = 12, D = 13, E = 14, F = 15
  • Base: 16
  • Place values: Powers of 16 (1, 16, 256, 4096, ...)

Each position is 16 times larger than the previous one.

Example:

1A (hex)
= (1 × 16) + (10 × 1)
= 26 (decimal)

Use: Widely used in programming, memory addresses, and color codes.

Summary

All number systems follow the same principle:

  • They use a specific set of digits
  • Each position represents a power of the base
System Base Digits Used Growth
Binary 2 0–1 ×2
Octal 8 0–7 ×8
Decimal 10 0–9 ×10
Hexadecimal 16 0–9, A–F ×16
```
Picture
Published on

Computer Technology - Decimal Data

Decimal notation is the number system we use in everyday life. It is based on multiples of 10, which makes it easy for humans to read and understand numbers.

The decimal system is also called base 10 because it uses ten digits: 0 through 9.

1. Decimal Digits

In the decimal system, each digit can take on 10 possible values:

0, 1, 2, 3, 4, 5, 6, 7, 8, 9

This is different from binary, which only uses two digits (0 and 1).

2. Possible Values

The number of values we can represent depends on how many digits we use:

Digits Possible Values Range
1 digit 10 0–9
2 digits 100 0–99
3 digits 1000 0–999

3. Growing Numbers

Each time we add another digit to a decimal number, the total number of possible values increases by a factor of 10.

  • 1 digit → 10 values
  • 2 digits → 100 values
  • 3 digits → 1000 values

This pattern continues as numbers grow larger, allowing us to represent very large values easily.

Summary

  • Decimal is the number system used in everyday life
  • It uses digits from 0 to 9
  • Each additional digit increases values by 10x
  • It is known as base 10
Picture
Published on
Computer Technology - Data Representation and Number Systems
Computers store and process all data in binary form (0s and 1s). However, binary is not always easy for humans to read or use. To make data more understandable and practical, we use different number systems (notations) to represent and interpret this binary data.
These notational systems allow us to represent numbers, text, and other types of data in ways that are easier for humans and software to work with.

1. Binary (Base 2)
Explanation:
Binary is the fundamental language of computers. It uses only two digits:
  • 0 (off)
  • 1 (on)
All data—numbers, text, images, and videos—are ultimately stored as binary.
Example:
The number 5 in binary is 101

2. Decimal (Base 10)
Explanation:
Decimal is the number system humans use every day. It uses ten digits:
  • 0 to 9
Example:
The number 245 in decimal is what we commonly use in daily life.

3. Hexadecimal (Base 16)
Explanation:
Hexadecimal (or “hex”) uses sixteen symbols:
  • 0–9 and A–F (where A=10, B=11, … F=15)
It is often used in computing because it is a shorter, more readable way to represent binary data.
Example:
Binary 1111 = Hexadecimal F

4. Octal (Base 8)
Explanation:
Octal uses eight digits:
  • 0–7
It was more commonly used in older computing systems but still appears in some areas like file permissions in operating systems.
Example:
Binary 111 = Octal 7

Summary
Although computers use binary internally, humans rely on different number systems to make data easier to understand:
  • Binary (Base 2): Used by computers
  • Decimal (Base 10): Used by humans
  • Hexadecimal (Base 16): Compact form of binary
  • Octal (Base 8): Simplified binary representation (less common today)
These systems help bridge the gap between how computers store data and how humans interact with it.
Picture
Published on
Computer Technology - Tying It All Together (Thermostat Example)
Explanation
A thermostat is a great real-world example of how all four computer operations--input, processing, storage, and output—work together in a complete cycle.

1. Input
The thermostat receives input from two sources:
  • User input: You set your desired temperature (e.g., 74°F)
  • Sensor input: A built-in thermometer measures the current temperature (e.g., 77°F)

2. Processing
The thermostat processes the data by comparing:
  • Current temperature vs. desired temperature
It determines whether the environment is:
  • Too hot
  • Too cold
  • Just right

3. Output
Based on the processing result, the thermostat sends instructions:
  • Turns on the heater if it’s too cold
  • Turns on the air conditioner if it’s too hot
This output controls other devices automatically.

4. Storage
The thermostat may store:
  • Current temperature readings
  • Past temperature data over time
This allows it to:
  • Show temperature history
  • Improve efficiency and user experience

Connecting to Everyday Computers
Just like a thermostat, your computer also uses the same four operations:
  • Input: Keyboard, mouse, microphone, webcam
  • Processing: CPU performs calculations and logic
  • Storage: RAM, HDD, or SSD store data
  • Output: Monitor, printer, speakers

Final Summary
All computing systems—from simple devices like thermostats to powerful computers—follow the same cycle:
Input → Processing → Output → Storage
This continuous cycle is what allows technology to respond, adapt, and perform useful tasks in everyday life.
Picture
Published on
Computer Technology - Storage
Explanation
Storage is the process of saving data so a computer can use it later. After receiving input, a computer can either store the data immediately or process it first and then store the results.
Storage is important because it allows computers to remember information, making it possible to reuse data without entering it again.

Types of Storage
1. Temporary Storage (Memory)
  • Stored in RAM (Random Access Memory)
  • Data is kept only while the computer is running
  • Very fast access
Example:
Opening an app or document uses RAM to store data temporarily.

2. Permanent Storage
  • Stored on devices like hard drives (HDD), solid-state drives (SSD), USB drives, or cloud storage
  • Data remains even when the computer is turned off
Example:
Saving a file on your computer or uploading photos to the cloud.

How Storage Works
  • A computer receives input
  • It may store the data directly, or
  • Process the data first, then store the results

Summary
Storage allows a computer to keep data for future use. It includes both temporary memory for quick access and permanent storage for long-term use, making computers efficient and reliable in handling information.
Picture
Published on
Computer Technology - Output
Explanation
Output is the stage where a computer presents the results of its processing. It is how the computer “communicates” information back to users or other devices.
Without output, users would not be able to see or use the results of the computer’s work.

Forms of Output
Output can appear in different ways, depending on the device and task:
  • Visual output: Displayed on a screen (text, images, videos)
  • Printed output: Hard copies produced by printers
  • Audio output: Sounds from speakers or headphones
  • Device control output: Signals sent to other devices

Examples of Output
  • Showing results on a monitor
  • Printing a document using a printer
  • Playing sound through speakers
  • Sending instructions to machines (like robots or smart devices)

Output to Other Devices
Not all output is meant for humans. Sometimes, computers send output as instructions to other devices.
Example:
  • A computer controlling a robot arm in a factory
  • A smart home system turning on lights or adjusting temperature

Summary
Output is the final step in the computer cycle where processed data becomes useful information. It allows users to understand results or enables devices to take action based on those results.
Picture
Published on
Computer Technology - Processing
Explanation
Processing is the stage where a computer analyzes input data and performs operations on it to produce meaningful results. It is one of the most important steps in the computer cycle because this is where actual “work” happens.
When a computer processes data, it can:
  • Perform calculations (like addition, subtraction, taxes, discounts)
  • Make decisions based on logic
  • Transform data into different forms (such as images, videos, or predictions)

Examples of Processing
  • Calculating the total cost of a customer order, including taxes and discounts
  • Editing or displaying images and videos
  • Playing music or video files
  • Predicting weather using data and algorithms

Role of the CPUProcessing is mainly carried out by a special component called the Central Processing Unit (CPU), often referred to as the “brain of the computer.”
The CPU:
  • Executes instructions from programs
  • Performs calculations and logical operations
  • Controls other parts of the computer system

Summary
Processing is the step where a computer turns raw data into useful information. Without processing, input data would have no meaning, and computers would not be able to perform tasks or solve problems.
Picture
Published on
Computer Technology - Computer Actions (Input, Processing, Storage, Output)
Computing devices—whether laptops, smartphones, servers, or tablets—all perform four essential operations: input, processing, storage, and output. These operations work together as a cycle that allows devices to function and respond to users and environments.

1. Input
Explanation:
Input is the process of providing information to a computing device so it can perform tasks. This information can come from users or other sources.
  • User input: Typing on a keyboard, clicking a mouse, tapping a screen, or using voice commands.
  • Automatic input: Data from sensors, other computers, or stored files.
Example:
A thermostat receives temperature data from a sensor and user settings from people adjusting the controls.

2. Processing
Explanation:
Processing is when the device takes input and performs calculations or logical operations on it. This is done by the CPU (Central Processing Unit).
Example:
The thermostat processes temperature data and compares it to the desired setting to decide whether to turn heating or cooling on.

3. Storage
Explanation:
Storage involves saving data for later use. This can be temporary (like RAM) or permanent (like hard drives or cloud storage).
Example:
A thermostat stores user temperature preferences so it doesn’t need to be reset every time.

4. Output
Explanation:
Output is the result produced after processing. The device presents this information in a form users can understand.
Example:
A thermostat displays the current temperature or activates heating/cooling systems.

Summary
All computing devices follow the same basic cycle:
  • Input: Receive data (from users, sensors, or systems)
  • Processing: Analyze or compute the data
  • Storage: Save data for future use
  • Output: Present results or take action
This cycle is what allows computers—from simple devices like thermostats to powerful servers—to perform useful tasks efficiently.
Picture
Published on

Computer Technology - Binary Data

Binary data is the foundation of all computing. Inside a computer, everything—software, documents, images, and videos—is stored and processed using only two values: 0 and 1.

Computers use binary because electronic systems can easily represent two states, such as on/off or charged/not charged.

1. Bit (Binary Digit)

The smallest unit of data in a computer is a bit.

  • A bit can only be 0 or 1
  • It cannot store letters or large numbers alone

Examples:

0 = off
1 = on

2. How Data Is Stored

Computers store bits differently depending on the hardware used.

Hard Disk Drive (HDD)

Uses magnetism:

1 = magnetic charge
0 = no charge

Memory / SSD

Uses electrical signals:

1 = charge on
0 = charge off

3. Combining Bits

Multiple bits allow computers to represent more values:

Bits Values Range
1 2 0–1
2 4 0–3
3 8 0–7
8 256 0–255

4. Example Conversions

2-bit: 00=0, 01=1, 10=2, 11=3

3-bit: 000–111 = 0–7

5. Byte

A byte = 8 bits.

  • Stores 256 values
  • Represents one character

Summary

  • Computers use binary (0s and 1s)
  • Bit = smallest unit
  • Byte = 8 bits
  • Binary enables all computing
Picture