TECHNOLOGY 

Published on
​KembaraXtra-Computer Terms – buffer (noun):
A buffer is a reserved area of memory used to temporarily store data while it is being transferred between devices or processes. It helps manage differences in speed between components, such as between a CPU and a printer.
By holding data temporarily, buffers ensure smooth data flow and prevent data loss or delays during transfer operations.
Picture
Published on
​KembaraXtra-Computer Terms – bucket:
A bucket is a section of memory that can store data as a single unit. It acts as a container for holding related information within a system.
Buckets are often used in data structures and storage systems to organize and manage data efficiently, especially when grouping or hashing data.
Picture
Published on
​ KembaraXtra-Computer Terms – bubble sort:
Bubble sort is a simple sorting algorithm that repeatedly compares adjacent elements in a list and swaps them if they are in the wrong order. This process continues until the entire list is sorted.
The name comes from the way smaller elements gradually move, or “bubble up,” to the top of the list. While easy to understand, bubble sort is not efficient for large datasets.
Picture
Published on
​KembaraXtra-Computer Terms – bubble memory:
Bubble memory is a type of storage that uses tiny magnetic domains, called “bubbles,” within a thin material to store data. It is nonvolatile, meaning it retains information even when power is turned off.
Although it once had advantages in reliability and data retention, bubble memory has largely been replaced by newer technologies such as flash memory, which are more cost-effective and easier to manufacture.
Picture
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 - 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 - 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 - 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 - 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 - 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