Understanding Data Organization: Files, Records, and Structures

Understanding Data Organization

LOGICAL RECORD – A homogeneous unit of information composed of data relating to a particular object or concept.

FIELD – An elementary unit of information within a logical record.

PHYSICAL RECORD – A unit of transmission or storage of information in auxiliary memory. It is a set of information that, depending on the characteristics of the machine, can be stored or read at one time. Often called a BLOCK. In general, a block consists of a variable number of logical records,

Read More

8085 Microprocessor: Addressing Modes, Interrupts, and Pipeline

8085 Instruction Addressing Modes

These instructions transfer data between registers, memory, and registers without altering the content. Addressing modes in 8085 are classified into 5 groups:

Immediate Addressing Mode

In this mode, the 8/16-bit data is specified in the instruction itself as one of its operands. For example: MVI K, 20F means 20F is copied into register K.

Register Addressing Mode

In this mode, data is copied from one register to another. For example: MOV K, B means data in register B

Read More

Monitor and Graphics Technologies: A Deep Dive

CRT (Cathode Ray Tube) Monitors

CRT monitors were once the most common type. They work by directing red, green, and blue electron beams across a phosphorus-coated screen. The phosphor glows when struck by the electron beam, while areas not struck remain dark. The combination of glowing and non-glowing areas creates the image.

LCD (Liquid Crystal Display) Monitors

LCD monitors consist of two polarizing filters with a liquid crystal solution between them. An electronic current aligns the crystals, allowing

Read More

NRZ, MDT, MDF, ISDN, and Passive S0 Bus Explained

NRZ, MDT, MDF, ISDN, and Passive S0 Bus

NRZ (Non-Return-to-Zero): One of the drawbacks of NRZ is that the signal must be accompanied by synchronization pulses, i.e., the clock signal. Without this, it’s impossible to determine bit synchrony. Therefore, a separate channel is required exclusively for the clock signal, leading to resource wastage.

Symbol Distortion: Bandwidth limitation and the transmission of digital information require significant bandwidth. Because the signal is square, it necessitates

Read More

Design Patterns: Effective Software Development

Introduction

Standards are an effective way to reuse project. Patterns are solutions to specific problems that occur recurrently in a given context that were identified from the collective experience of software developers. The main advantage of using standards is because it describes software abstractions, including:

  • Common vocabulary
  • Effective communication of complex principles, helps to document the software architecture
  • Capture the essential parts of a compact design

Design Patterns

However, the

Read More

Dynamic vs Static Data Structures: Linear Lists Explained

Dynamic vs. Static Data Structures

Dynamic Structures:

Dynamic data structures are structures that grow as a program runs. A dynamic data structure is a collection of items called nodes, normally records. Unlike an array, which contains space for storing a number of elements, dynamic structures are used for the storage of real-world data that are constantly changing. A typical example of a static data structure is the list of passengers on an airline. If this list is kept in alphabetical order in

Read More