Computer and Programming Topics
Computer and Programming Topics
DOS stands for Disk Operating System. It is a command-line-based operating system that was
widely used before the rise of graphical operating systems like Windows. DOS allows users to
interact with the computer by typing text commands. It manages files, runs software, and controls
hardware resources.
5. COPY - Copies files from one location to another. Example: COPY file.txt D:\Backup
Machine language is the lowest-level programming language written in binary (0s and 1s). Assembly
1. **Machine Language** is directly executed by the CPU, while **Assembly Language** requires an
assembler.
3. Machine Language is not human-readable; Assembly Language is more readable but still
low-level.
4. Machine Language is very fast in execution, while Assembly is slower due to translation.
5. Both are used for system-level programming, but Assembly is more manageable.
EBCDIC stands for Extended Binary Coded Decimal Interchange Code. It is an 8-bit character
encoding system developed by IBM for use in its mainframe and midrange computer systems.
EBCDIC is used to represent letters, numbers, punctuation, and control characters in binary form so
Key Features:
3. Not compatible with ASCII, which is more commonly used in modern systems.
A system running on IBM mainframe might store the string 'AB1' in EBCDIC as C1 C2 F1.