TECHNOLOGY 

Published on
KembaraXtra-Computer Terms – bang path:
A bang path refers to an older style of e-mail addressing used in UUCP (UNIX-to-UNIX Copy Program) systems. In this addressing method, the path of the message from the sender to the destination is explicitly written in the address itself. The address lists the sequence of host computers through which the message must pass before reaching its final destination.


The elements of the address are separated by exclamation marks, which are pronounced “bang.” For example, an address such as name!location indicates a user account followed by the host system. When spoken aloud, this address would be read as “name bang location.” This method has largely been replaced by modern Internet e-mail addressing systems.

Picture
Published on
KembaraXtra-Computer Terms – banner page:
A banner page is a special title or separator page that can be automatically printed at the beginning of a print job. Print spooler systems commonly generate banner pages to display details such as the user’s account identification, the number of pages in the print job, and the name of the printing system.


In software applications, the term banner page may also refer to an introductory screen that appears when a program starts. This screen typically displays the name of the software product, version information, and credits for the developers or publishers.

Picture
Published on
KembaraXtra-Computer Terms – bar chart:
A bar chart is a graphical method used to represent data using rectangular bars. Each bar corresponds to a specific data value, and the length or height of the bar visually indicates the magnitude of that value.


Bar charts can be displayed vertically or horizontally and often use different colors, patterns, or shading to distinguish between data categories. They are commonly used to compare quantities and can display both positive and negative values relative to a central baseline. Two common forms include standard bar charts, where each value has its own bar, and stacked bar charts, where multiple values are combined within a single bar.

Picture
Published on
KembaraXtra-Computer Terms – bar code scanner:
A bar code scanner is an optical input device used to read bar codes and convert the encoded information into digital data that a computer can process. The scanner typically uses a laser beam or imaging sensor to detect the pattern of bars and spaces printed on a label or product packaging.


When the scanner passes over the bar code, it analyzes the reflected light pattern and translates it into corresponding numerical or textual information. This data can then be used for tasks such as product identification, inventory tracking, and point-of-sale transactions. Bar code scanners are commonly used in retail stores, warehouses, hospitals, and logistics operations.

Picture
Published on
KembaraXtra-Computer Terms – bare board:
A bare board refers to a circuit board that does not yet contain installed electronic components such as integrated circuits or memory chips. It consists only of the board itself with its printed electrical pathways and connection points.


In many cases, the term is used when referring to memory boards or other expansion boards that have not yet been populated with the chips required for operation. Bare boards are often produced as part of the manufacturing process before the necessary electronic components are added during assembly.

Picture
Published on
Image description
KembaraXtra-Computer Terms – base class:


In object-oriented programming, a base class is a class that serves as the foundation from which other classes are derived. It defines common properties and behaviors that can be inherited by other classes. The derived classes can then extend or modify these characteristics while still retaining the functionality provided by the base class.


The concept of a base class supports the principle of inheritance, which allows programmers to reuse existing code and organize related classes into logical hierarchies. By defining shared attributes and methods in a base class, developers can reduce redundancy and simplify the development and maintenance of complex software systems.

Published on
KembaraXtra-Computer Terms – bare bones:
As an adjective, bare bones describes a system or application that includes only the most basic features required to perform its intended function. A bare bones software application provides minimal capabilities, focusing strictly on essential operations without additional tools or enhancements.


In hardware contexts, a bare bones computer refers to a system that contains only fundamental components needed for operation. Such systems usually include the motherboard with processor and memory, a cabinet, a power supply, a floppy disk drive, and a keyboard. Additional components such as a hard drive, video adapter, monitor, and other peripherals must be added by the user to complete the system.
Picture
Published on
KembaraXtra-Computer Terms – baseband:


Baseband refers to a type of communication system in which a transmission medium carries only a single signal at a time in digital form. In this system, the entire bandwidth of the communication channel is dedicated to one transmission rather than being divided among multiple signals. The digital data is sent directly over the medium without being modulated into different frequency channels.


Baseband communication is commonly used in local area networking technologies such as Ethernet and Token Ring networks. In these systems, devices share a common communication channel and transmit data directly as digital signals. Because only one message can be transmitted at a time, mechanisms are used to ensure that devices transmit only when the channel is free.

Picture
Published on
KembaraXtra-Computer Terms – base address:


A base address is a reference location in memory used as the starting point for calculating the exact position of data within a memory segment. It forms the constant portion of a two-part memory addressing system. The base address itself does not identify the exact byte of data but instead establishes the beginning of a memory region. To locate the precise memory location, an offset value is added to the base address, producing the absolute address where the data is stored.


This method of addressing is commonly used in computer architectures that organize memory into segments. For example, in certain personal computers, memory locations are identified relative to the start of a segment. The concept is similar to street addressing: the base address corresponds to the beginning of a block, while the offset represents the specific number within that block. By combining the base address with the offset value, the system determines the exact memory location needed to store or retrieve data.
Picture
Published on
KembaraXtra-Computer Terms – base:
In mathematics, a base is the number that is raised to a power indicated by an exponent. The base represents the value that is repeatedly multiplied by itself according to the exponent. For example, in the expression 2³, the number 2 is the base and the exponent 3 indicates that the base is multiplied by itself three times, producing the result 8.


In numbering systems used in computing and mathematics, the base refers to the number of distinct digits used to represent numbers in that system. Several numbering systems are commonly used in computing. The binary system uses base 2 and consists of the digits 0 and 1. The octal system uses base 8 with digits from 0 through 7. The decimal system, which is commonly used in everyday counting, uses base 10 and includes digits from 0 through 9. The hexadecimal system uses base 16 and includes digits 0 through 9 along with letters A through F to represent values from 10 through 15. When numbers are written in a specific base, the base is often indicated in parentheses following the number.


In electronics, the term base also refers to one of the three terminals in a bipolar transistor, the others being the emitter and collector. The base terminal controls the flow of electrical current between the emitter and collector, allowing the transistor to act as an amplifier or switch. Additionally, in hardware manufacturing, base can refer to the insulating material that forms the foundation of a printed circuit board. This base layer supports the conductive pathways and electronic components that make up the circuit.

Picture