Basic Computer Structure (PDF) - Computer Terminology & Components
Document Details
![PreferableHeliotrope4211](https://quizgecko.com/images/avatars/avatar-13.webp)
Uploaded by PreferableHeliotrope4211
Kingston University
Tags
Summary
This document from Aviation Australia covers the fundamental concepts of computer structure, including computer terminology, transistors, bits, nibbles, and bytes. The text delves into computer hardware, binary digits, and the function of integrated circuits. The document provides a valuable introduction to the building blocks of computer systems.
Full Transcript
Here is the transcription of the provided document into a structured markdown format. # Aviation AUSTRALIA ## Basic Computer Structure (5.6.1) ### Learning Objectives * 5.6.1.1 Describe computer-related terminology including bits, byte, software, hardware, CPU, IC, RAM, ROM and PROM (Level 2)....
Here is the transcription of the provided document into a structured markdown format. # Aviation AUSTRALIA ## Basic Computer Structure (5.6.1) ### Learning Objectives * 5.6.1.1 Describe computer-related terminology including bits, byte, software, hardware, CPU, IC, RAM, ROM and PROM (Level 2). * 5.6.1.2 Describe the applications of computer based technology in aircraft systems (Level 2). ## Computer Terminology ### Basic Computer Operation Computers work by manipulating 1s and 0s (binary data). A computer takes input data from input devices and translates it into output data for output devices. Complex computers, such as the modern desktop computer or the flight control computer, although required for different uses, are made up of the same combinations of components. Physically, computers are typically centred around a motherboard, containing a Central Processing Unit (CPU), Random Access Memory (RAM) slots, and several other integrated circuits (ICs) responsible for connecting to peripherals such as sound cards, graphics cards, speakers etc. The outputs of a computer is greatly varied and dependable on the software running on the computer. Here is a text-based representation of the diagram in the document: ``` Computer Architecture CPU ------------------ | Control Unit | |------------------| | Arithmetic-Logic Unit| ------------------ Monitor Input I/0 System Bus I/0 Output Speakers Devices Devices etc. Mouse Keyboard etc. Inputs Main Memory (RAM) ROM Motherboard Actuators Sensors Flight Control Telemetry GPS Computer Engines Computer hardware (high-level) more outputs ``` ## Binary Digits ### Transistors At the lowest level, an IC is made up of lots of transistors that switch between two states: ON and OFF. Transistors are switched on and off by applying a voltage to the base. Computers function using only two logic levels; ON and OFF or 1 and 0, respectively. This is why the binary numbering system is so important. A 1, or ON, or a HIGH, is typically about 5-V DC, and a 0, or OFF, or a LOW, is typically 0-V DC in electronic components. The image shows two transistor circuits, each with a transistor, resistors labelled "+Vcc" and capacitors labelled "C," with connections labelled "E." The first circuit shows an arrow pointed at the base labelled "0 V," and the second shows an arrow pointed at the base labelled "+V." ## Bits A Binary Digit (Bit) of information is the 1 or 0 applied to the transistors, gates, or integrated circuits of the computer system. All of a computer's processes are performed by processing bits of information. As described in the previous topics, the combination of electronic components can allow for bits of information to operate logic circuits. The following transistorised light circuit operates as a simple AND gate. To switch the light ON, you must apply a high, or 5-V DC, to both the transistors. In this way, logic can be used to perform a function; the light will only switch ON if both inputs are high. This is the foundation of all computer processing. Here is a text-based representation of the transistor circuit schematic: ``` Transistor Switch Circuit Operates as an AND Gate 0 LED 1k 0 Input A ------||------ Transistor 1 +9 V 1k 100k 0 Input B ------||------ Transistor 2 1k 100k Transistor circuit operating as an AND gate ``` In this case, you can imagine a physical switch at input A and a switch at input B. These inputs are connected to the 5-V DC power source. Initially, both switches are open and there is no current flow, therefore no voltage and thus both states are 0. Pressing the switch at input A and allowing current to flow through transistor 1, makes input A the equivalent of a bit value of 1. However, this circuit configuration is an AND gate and requires both input A and input B to be high or 1s. Pressing the switch at input B allows 5-V DC to flow through transistor 2. With inputs A and B high, both transistors are forward biased and the LED circuit can operate, turning the LED on. Logically, this circuit can be represented by the AND gate. ## AND Gate Here is the truth table for an AND gate | A | B | X | | - | - | - | | 0 | 0 | 0 | | 0 | 1 | 0 | | 1 | 0 | 0 | | 1 | 1 | 1 | $X = AB$ $X = A \cdot B$ can be written as either A description of the graphic shows a standard AND gate logic symbol with two inputs (A and B) and one output (X). ## Bits, Nibbles and Bytes A bit is not a large vehicle to carry much information. With 1 bit, there are only two possible values: 0 and 1. As you increase bits, the total number of states the bits can represent increase exponentially. For example: * With 2 bits to represent a value, there are four possible values: 00, 01, 10 and 11. * With 3 bits, there are eight possible values: 000, 001, 010, 011, 100, 101, 110 and 111. * With 4 bits there, are 16 possible values. * With 8 bits there are 256 possible values (and so on). Here's the 2-bit combination table: | A | B | | --- | --- | | 0 | 0 | | 0 | 1 | | 1 | 0 | | 1 | 1 | 2-Bit combinations (4 total) Certain significant numbers of bits have distinct names: * A Nibble is 4 bits of data (1111). * A Byte is 8 bits of data (1111 1111). A byte of information can output 256 possible combinations of bits and is far more useful in designing computer components and modules than a bit. A single character on a keyboard is represented internally as a series of 8 bits, or a byte. Computers typically store and manipulate bunches of 8 bits of data. These 8 bits make up a byte. American Standard Code for Information Interchange (ASCII) codes use 8 bits to represent a single character, such as the letter A or the number 7. Thus, the computer can store and manipulate an individual byte (a single character) or a group of bytes (several characters, a word) at a time. These individual bytes or groups of bytes form the basic unit of memory. Here is an explanation of another image: ``` MSB Bit LSB ↓ 1 0 0 1 0 1 1 0 2^7 2^6 2^5 2^4 2^3 2^2 2^1 2^0 x128 x64 x32 x16 x8 x4 x2 x1 ↓ 8 Bits = 1 Byte A binary byte of data 0 4 8 32 64 Bits Nibble Byte Word Long Word Very Long Word ``` Primary storage capacities are usually specified in number of bytes. In modern computing memory is often referred to in kilobytes (KB), megabytes (MB), gigabytes (GB) and terabytes (TB). The symbol K (kilo) is equal to 1024 bytes. Therefore, if a computer has 512K bytes (not bits) of primary storage, then it can hold $512 \times 1024$, or 524,288, characters (bytes) of data in its memory. A MB of data is 1024 KB, a GB is 1024 MB and a TB is 1024 GB. $1 \text{ terabyte } = 1e12 \text{bytes or }1,000,000,000,000 \text{bytes} $. 1 TB and 2 TB USB flash drives store data on a device the size of a thumb. ## Integrated Circuits An integrated circuit (IC) also known as a microchip, is an assembly of electronic components, fabricated as a single unit. As computer logic complexity grows, the number of logic gates and circuits required to represent data also grows. An IC allows for miniaturised active devices (e.g., transistors and diodes) and passive devices (e.g., capacitors and resistors) to be preconstructed and allow more complex logic actions to take place. The following circuit shows several discrete (full size) components on a printed circuit board (PCB) with a microchip. The image shows a circuit board with various discrete components, including resistors, capacitors, and a microchip. Labels and markings can be seen on the board indicating component values and placement. If all of the internal components of an integrated circuit were the size of the traditional circuit components, a modern computer CPU would fill entire rooms. This was precisely the case during the early stages of computer development. Integrated circuits use miniaturised circuitry. In the early stages of miniaturising circuit components, resistors, capacitors and inductors were all much larger than transistors. As development progressed, these components shrunk into the form of silicon wafers or chips. The process quickly required printed circuit boards where miniaturised components could be packed and stacked into circuits. When several miniature circuits are combined, the result is a small monolithic “chip,” which is often only a few square centimetres or square millimetres in size. The individual circuit components are generally microscopic in size. The first picture shows a detailed image of an integrated circuit (silicon wafer) at 35x zoom revealing its complex internal structure. The second picture shows a PCB surface mounted with integrated circuits with text "AF-906, MX, TAIWAN," "AF908, LP04040...JM39AD" etc ## Advantages of ICs The evolution of integrated circuits and miniaturised components has enabled modern computing that is used across every industry today, including Aviation. Some advantages of integrated circuits are: * Drastically reduced size and weight * Increased reliability * Lower cost * Improved performance The packaging of ICs are designed to provide distinct inputs and outputs to the rest of the circuit as well as to dissipate the heat generated within. ### Disadvantages of ICs The main disadvantage of integrated circuits is the move to repair by replacement. ICs are difficult to repair and typically, it is much cheaper to simply replace the component altogether with an example diagram. The image shows electronic tweezers grasping an integrated circuit on a circuit board. Other components such as resistors and capacitors are visible on the board. The text on the largest IC is labelled "314.576 Sn R68" ## Summary Transistors circuits are used to construct logic gates. Logic gates are used to construct integrated circuits and integrated circuits are used to construct computer processors. | IC Type | Description | Pin Layout Description | | ---------- | ------------- | ------------------------------------------ | | 74LS02 | 2-input AND | A circuit diagram showcasing the pin layout | | 74LS00 | 2-input NAND | A circuit diagram showcasing the pin layout | | 4001 | 2-input NOR | A circuit diagram showcasing the pin layout | | 4011 | 2-input NAND | A circuit diagram showcasing the pin layout | | 74LS04 | INVERTER | A circuit diagram showcasing the pin layout | | 74LS07 | BUFFER | A circuit diagram showcasing the pin layout | | 4049 | INVERTER | A circuit diagram showcasing the pin layout | | 4050 | BUFFER | A circuit diagram showcasing the pin layout | ## Computer Hardware Computer hardware refers to the physical components of a computer including the: * Case * Motherboard * Central Processing Unit (CPU) * Memory - RAM, ROM * Graphics card * Sound card * Input devices - mouse, keyboard * Output devices - monitor, speakers It includes all the physical components and their makeup including circuit components such as resistors, transistors, capacitors etc. An illustration is included alongside the text. ## Computer Software Software plays a major role in computer data processing. The software is the means in which instructions are translated from a human to computer. The hardware components including the electric circuits, logic and processing all exist with the primary goal of running software. Through the various input devices, a computer is instructed via software to perform a task. The operating system then receives the instruction and processes the job information to allocate memory and run processes accordingly. A screenshot is included of Microsoft Excel and another window of Fedex tracking information. A pile of software installation CD's are displayed below. In the aircraft industry, Automatic Test Equipment (ATE) is commonly used to fault-isolate avionics components and circuitry. The cost of purchasing the ATE is far outweighed by the cost of purchasing the software to perform the fault isolation. Aircraft systems are loaded with software. From flight management system computers, flight control computers, and navigation computer systems are all loaded with software. The software versions are periodically updated to overcome problems, improve performance or to run using more accurate and contemporary data. #### Motherboard In PCs, the CPU is typically connected to a motherboard. Additionally, motherboards contain all the interconnecting circuitry and plug-in points for all of the internal electronic circuitry required to operate a modern computer: * Memory - RAM and ROM * Solid state drives * Graphics cards * Sound cards * Memory cards * Hard disc and CD drives. The image shows two motherboard examples with different connection slot configurations and text labels describing them. ## Microcomputers A microcomputer is an electronic device with a microprocessor as its central processing unit (CPU). The term microcomputer was formerly a common term for personal computers, particularly any of a class of small digital computers whose CPU is contained on a single integrated semiconductor chip. However, it is rare in the modern age of computing for computers to be referred to as microcomputers - the 'micro' has become redundant. Almost all modern devices all fall under the category of microcomputer; modern desktop PCs, video game consoles, laptops, tablets, smartphones, smart watches, pocket calculators and industrial embedded systems. Each of these computers are made up of the same patterns of technology, where size, performance and memory are maximised based on their physical size and power constraints. An image shows the modern computing devices in an illustration. ### Computer Architecture The way in which computers are built stays relatively consistent in all modern devices. At the highest level, a computer takes an input, processes it and provides a desired output. When the term Desktop PC is mentioned, the computer is considered everything inside the computer case. However, the computer can be broken into key components that allow for complex processing. A computer is made up of: * The Motherboard, which contains a bus system (internal and external) and houses all the components required to enable the computer to operate. * The bus system (internal and external) serves as the communication highway of the motherboard. The internal bus links the different parts of the computer to the CPU and the main memory. Its primary task is to send data and instructions to the different areas within the motherboard, including the external bus. The external bus, also known as the expansion bus, serves as the interface for peripheral devices like hard discs, CD-ROM drives, and flash drives to connect to the CPU. * The Central Processing Unit (CPU), which performs basic arithmetic, logic, controlling, and input/output (I/O) operations specified by the instructions in the program. The CPU typically contains several distinct sections which focus on different types of calculations. This will be elaborated further in the following section. * The Main Memory (known more commonly as RAM) which stores the programs and data when the central processor is actively using them. * The I/O Circuitry, which are the computer peripherals enabling the input and output devices to actively communicate with the computer. * There are a number of other external systems such as the Graphics Processing Unit (GPU) that are commonly used alongside computers but are less tied to the avionics knowledge requirements and will not be expanded further. The following diagram maps the major components of a modern microcomputer into a high level flowchart. As demonstrated Flight Control Computers (FCC) follow a much similar structure despite quite different use cases. A major difference between an FCC and a personal computer is the strict requirements placed on the components used, their accuracy and the level of redundancies required within the system. Here is a text-based representation of the architecture diagram: ``` Computer Architecture CPU ------------------ | Control Unit | |------------------| | Arithmetic-Logic Unit| ------------------ Monitor Input I/0 System Bus I/0 Output Speakers Devices Devices etc. Mouse Keyboard etc. Inputs Main Memory (RAM) ROM Motherboard Actuators Sensors Flight Control Telemetry GPS Computer Engines Computer hardware (high-level) more outputs ``` Computer Processors A computer processor is a huge collection of circuits similar to the adders described, designed to produce a particular output for certain inputs. A calculator is one of the simplest processors; its equivalent of a CPU is designed to deal only with numbers and to just perform mathematical calculations. The image shows a scientific calculator highlighting components like the button battery, the processor chip and the rubber keyboard. ### Operating System A modern computer CPU performs much more complex calculations but is still nothing more than a collection of logic circuits configured to produce a desired outcome. The CPU is the brain of the computer. An operating system is a collection of many programs used by the computer to manage its own resources and operations. These programs control the execution of other programs. They schedule, assign resources, monitor and control the work of the computer. Not all computers have operating systems. The computer that controls a microwave oven does not need an operating system. It has one set of relatively simple tasks to perform, very simple input and output methods (a keypad and a Liquid Crystal Display [LCD] screen) and simple, never-changing hardware to control. Image shows a circuit board with many connections, an integrated circuit labelled ATMEGA1284P, video and USB ports, and jumpers. Additional text labels the "Keyboard." Aircraft systems and components like Flight Management Computers (FMCs) and Multifunction Control Display Units (MCDUs) use very customised operating systems to manage the many functions they perform. Here is an image of Multi-function Control Display Unit showing the initial position page. At the simplest level, an operating system does two things: it manages the hardware and software resources of the computer system. These resources include such things as the processor, memory, discs space and so on. The operating system provides a stable, consistent way for applications to deal with the hardware without having to know all the details of the hardware ## Memory Technologies ### Memory Storage Technologies For the CPU to control and coordinate all processing activity, it must be able to locate each instruction and data item in storage. Consider the storage as nothing more than a collection of letterboxes. Each letterbox has a unique address and represents a location in memory. Like the mail in your letterbox, the contents of a storage location can change, but the number on your letterbox or memory address always remains the same. In this manner, a particular program instruction or data item that is held in storage can be located by knowing its address. Some computers can address each character of data in memory directly. Others address computer words, which contain a group of characters at a single address. Some types of data storage technologies include: * Magnetic core storage * Semiconductor Dynamic Random-Access Memory (DRAM) * NAND Solid State Drives (SSDs) * Magnetic tape storage * Magnetic Disc Hard Drives (HDDs) #### Magnetic Core Storage Although magnetic core storage is no longer as popular as it once was, its concepts are easily understood and apply generally to the more integrated semiconductor and bubble-type memories. Magnetic core storage is made up of tiny doughnut-shaped rings made of ferrite (iron) that are strung on a grid of very thin wires Since data in computers is stored in binary form, a two-state device is needed to represent the two binary digits (bits): 0 for OFF and 1 for ON. In core storage, each ferrite ring can represent a 0 or 1 bit, depending on its magnetic state. If magnetised in one direction, it represents a 1 bit, and if magnetised in the opposite direction, it represents a 0 bit. These cores are magnetised by sending an electric current through the wires on which the core is strung. It is this direction of current that determines the state of each core. The image shows a piece of ferrite memory core, the individual cores magnified and a memory module with the memory cores. Core storage is non-volatile – data is retained even if there is a power failure or breakdown since the cores store data in the form of magnetic charges rather than electric current. #### Dynamic Random-Access Memory DRAM is a type of semiconductor memory that stores data in a memory cell (a tiny capacitor / transistor circuit) based on metal-oxide-semiconductor (MOS) technology. The capacitor is either charged or discharged to represent the 0 and 1 data states. The electric charge on the capacitors can slowly discharge, so without intervention the data on the chip would be lost. To prevent this, DRAM requires an external memory refresh circuit which periodically rewrites the data in the capacitors, restoring them to their original state. DRAM is volatile memory in that it loses its data on loss of power. DRAM typically takes the form of an integrated circuit with up to billions of DRAM memory cells. DRAM chips are low-cost and high-capacity computer memory. Labelled as the Die photograph of 128kB DRAM IC. #### NAND Solid State Drive NAND SSD performance is related to the number of parallel NAND flash ICs used in the device. A single NAND chip is relatively slow in processing terms however when multiple NAND devices operate in parallel inside an SSD, the data throughput or bandwidth scales or increases accordingly. NAND SSDs have the ability to retain data without a constant power supply so data is retained or persists through sudden power outages. NAND SSDs are not suitable for long term (archive) data storage due to their slow leakage rate. #### Magnetic Tape Storage Another type of storage device is magnetic tape, which is like the tape used with commercial tape recorders. It is used mainly for secondary storage. It differs from commercial tape in that it is usually wider (ranging from 0.5 in. to 1 in.) and is manufactured to more rigid quality specifications. It is made of a mylar base coated with a magnetic oxide that can be magnetised to store data. Magnetic tape comes in a variety of lengths (from 600 to 3000 ft), and is packaged in one of three ways: open reel, cartridge or cassette. Large computers use standard open reels, 0.5-in. wide tape that is 2400 ft in length. The diagram shows a 7-track magnetic tape as a graphical illustration. There shows the spools, cartridges and a DAT cassette next to it. #### Magnetic Disc Storage The popularity of disc storage devices is largely because of their direct-access capabilities. Magnetic discs resemble phonograph records coated with a magnetisable recording material (iron oxide), but their similarities end there. Magnetic discs come in many different sizes and storage capacities. They range from 3 in. to 4 ft in diameter and can store multi-millions of bytes. They can be portable (removable) or permanently mounted as hard drives. They can be rigid metal (hard discs) or flexible plastic (floppy discs or diskettes). An example of a magnetic disc diagram is included in the file. Shows magnetic layers with tracks, and also a series of images for "5 MB and 10 MB Hard Disks". #### Semiconductor Storage (Silicon Chip) Semiconductor memory consists of millions of tiny electronic circuits etched on a silicon chip. Each of these electronic circuits is called a bit cell and can represent a 0 or 1 bit, depending on whether or not current is flowing in that cell. Some of the advantages of semiconductor storage are: * Fast internal processing speeds * Low power consumption * High reliability * High density (many circuits) * Low cost Silicon memory is volatile – data is lost when power is removed. If the power on your computer fails and you have no backup power supply, all the stored data will be lost. The images describe 8 in, 5.25 in and 3.25 in floppy disks and semiconductor storage and circuit schematics. ## Memory Storage Devices ### Computer Memory In computing, memory is a device or system that is used to store information for immediate use in a computer or related electronic system. The term memory is commonly used with the term primary storage or main memory. All memory sections must contain facilities to store computer data or instructions (that are intelligible to the computer) until they are needed in the performance of the computer calculations. Before the stored-program computer can begin to process input data, it must store in its memory a sequence of instructions, tables of constants and other data it will use in its computations. The process by which these instructions and data are read into the computer is called loading. An example of Memory (internal storage) is included in the file as an image. ## Storage Device Classification Memory in computers is categorised into short-term data storage and long-term data storage. Computer memory typically refers to the short-term data, whereas computer storage refers to the long-term data. The speed and performance of a system depends on the amount of memory that is installed. An analogy being that this compares the difference between a desk and a filing cabinet. The desk represents the memory of your computer. Items that are required for immediate use are kept on the desk for easy access. However, not much can be stored on a desk due to its size limitations. The filing cabinet represents the storage of the computer. It holds items that need to be saved and stored but are not necessarily needed for immediate access. The size of the filing cabinet means that it can hold a large number of things. Technically, both are means of storage. For that reason, the more technical name for the two types are; primary storage devices and secondary storage devices. Primary storage diagrams are included such as Random-Access-Memory (RAM). ### Primary Storage Primary storage is located on the motherboard (often called internal storage). As a result, data can be read from and written to primary storage extremely quickly. This gives the processor fast access to the data and instructions that the primary storage holds. The different kinds of memory used within the CPU are: * Random-Access Memory (RAM) * Read-Only Memory (ROM) * Programmable Read-Only Memory (PROM) * Erasable Programmable Read-Only Memory (EPROM) The two main types of primary storage are ROM, which is non-volatile, and RAM, which is volatile. Non-volatile memory keeps its contents even when the computer is switched off. Volatile memory loses its contents when power is lost. Primary storage is comparatively limited in size, especially when compared with secondary storage. In a modern personal computer, primary storage is often either GB 8GB or 16 GB in size. #### Random-Access Memory Random-Access Memory (RAM) is one of the most important components in determining a computer's performance. RAM is where applications store and access data on a short-term basis. It stores the information your computer is actively using so that it can be accessed quickly. RAM is volatile, similar to a blackboard on which you can scribble down notes, read them and wipe them away when you are finished with them. In the computer, RAM is the working memory. Data can be read (retrieved) from or written (stored) in RAM just by giving the computer the address where the data is stored or is to be stored. When the data is no longer needed, you can simply write over it. This allows you to use the storage again for something else. PC RAM ICs allow data to be retrieved rapidly and overwritten when no longer required. RAM stores data that can be quickly accessed before being operated on in the ALU. In contrast, a CPU would run very slowly by reading and writing all calculations directly to and from secondary storage such as a hard drive. RAM is the best-known form of computer memory and is considered 'random access because you can access any memory cell directly if you know the row and column that intersect at that cell (address). #### Read-Only Memory In silicon memory devices, usually data is lost when power is removed. Silicon-based ROM differs from silicon-based RAM. The term ROM is associated with solid-state memory devices. Only the computer manufacturer can provide these programs in ROM, and once they are done, they cannot be changed. Consequently, you cannot put any of your data or programs in ROM. The diagram displays Read-Only Memory with the various integrated circuit layers. In most computers, it is useful often-used instructions, such as those used bootstrap (initial system load) the computer or other specialised programs, permanently stored inside the computer. Memory that enables us to do this without the programs and data being lost (even when the computer is powered down) is called read-only memory #### Programmable Read-Only Memory An alternative to ROM is Programmable Read-Only Memory (PROM) that can be purchased already programmed by the manufacturer or in a blank state. By using a blank PROM, you can enter any program into the memory. However, once the PROM has been written into, it can never and or changed. The main disadvantage of PROM is that if a mistake is made and entered into PROM, it cannot be corrected or erased. Also, a special device is needed to 'burn' the program into PROM. The programmable read-only memory (PROM) and PROM programmer are represented in pictures and illustrate several electrical circuits that can change functionality. PROM is a way of allowing a user to tailor a microcode program using a special machine called a PROM Programmer. This machine supplies an electrical current to specific cells in the ROM that effectively fuses in them. The process is known as burning the PROM. This means once it has been programmed the memory will act as ROM, it will now with loss #### Erasable Programmable Read-Only Memory Erasable Programmable Read-Only Memory (EPROM) was developed to overcome the drawback of PROM. PROMs can also be purchased blank from the manufacturer and programmed. Again, this requires special equipment. The big difference with EPROM is that it can and the need arises. Data and programs can be retrieved over and over again contents EPROM. a you an you to program light. EPROM, not fatal. The EPROM can be erased and corrected. In conclusion here is another image of a circuit labelled Erasable Programmable Read-Only Memory (EPROM). ## Software Storage Mediums Software storage mediums include reel-to-reel; 8-in., 5-in. and 3-in. floppy discs, cassette tapes; CD-ROM's - DVD's, portable hard drives, and flash cards. Flashmemory cards are tiny and the moving parts. Often, used in digital cams and devices, they can also be used reel-to- reel, disk and bios chip. Secondary storage-The common message from is that those are forms of storage which memory (Ram), read all so the main body computer CPU memory we data futureuse Secondary data and when is turned is used. This only and use disk, drum ## Applications of Computer Based Technology in Aircraft Systems ### Digital Aircraft Systems The aircraft industry has adopted computer technology to provide improvements to aircraft safety, a reduction in pilot workload, operational economies, sophisticated In-Flight Entertainment (IFE) and centralised control of numerous cabin functions, e.g. passenger reading lights. Ever-increasing integration of computer technology is continuously improving a very wide range of aircraft applications and interfaces. In-Flight Entertainment and improvements in navigation and communication software are among the systems that are strongly enhanced by digital computer technology, e.g. by radar technology that displays storm activity terrain. The data processing the pilot. For instance here is a modern digital screen showing an airliner and its current bearing. The image includes elements such as scale, a radar system, turbine and calibration information. Integration of computer systems has improved pilots, ability to monitor control aircraft systems and by aviation