IT220 Network Standards & Protocols. Unit 1: Chapter 1 Introduction to Computer Data

Size: px
Start display at page:

Download "IT220 Network Standards & Protocols. Unit 1: Chapter 1 Introduction to Computer Data"

Transcription

1 IT220 Network Standards & Protocols Unit 1: Chapter 1 Introduction to Computer Data

2 Objectives Identify the major needs and stakeholders for computer networks and network applications. Describe how digital devices store data. Describe the differences between input and output devices. 2

3 Various Types of Computer/Computing Devices 3 Figure 1-1

4 Introducing Data and Information, Bits and Bytes Computers use binary digits (bits) to record information electronically Bits represent either value of 0 or 1 Bit is smallest unit of data computers work with Computers work with multi-digit binary numbers 1. Nibble 2. Byte 3. Word 4. Doubleword 4

5 Nibble, Byte, Word, Double Word 5 Figure 1-2

6 Kilobyte, Megabyte, Gigabyte, Terabyte Term Size (Bytes) Size (2 N Bytes) Rounded by Size (Bytes) Kilobyte ,000 Megabyte 1,048, ,000,000 Gigabyte 1,073,741, ,000,000,000 Terabyte 1,099,511,627, ,000,000,000,000 6 Table 1-1

7 Random Access Memory (RAM) Physically exists as set of microchips installed on plastic card (memory module) Central Processing Unit (CPU) uses RAM like people use notepad 1. Stores binary value so can use it later 2. Can read data from RAM to recall value stored earlier CPU sends electrical signal over bus (electrical pathway) to communicate with RAM 7

8 Random Access Memory (RAM) (cont.) RAM uses address for each unique memory location where byte can be stored To write to RAM: CPU sends signal to RAM over the bus to write (store) value into byte of RAM 1. Address in RAM 2. Value to be written To read from RAM: CPU uses similar process (see example in Figure 1-3 on next slide) 8

9 CPU Reads Byte 4 from RAM The CPU uses the same bus to read the current value of a byte in RAM as it does to send a message to RAM. The read request lists the address of the particular byte, asking for its value. RAM returns the binary value stored at that address. 9 Figure 1-3

10 Writing Individual Bits in Byte 4 of RAM RAM circuitry sends a slightly different electrical input to the bits that need to store a 1 versus a 0 to control the capacitors. Essentially, RAM chooses one of two inputs to each bit, which results in either a full or partial charge in the capacitor, which in turn represents either a 1 or 0, respectively. 10 Figure 1-4

11 Representing Information Using Bytes of Data Data: Focused on bits and bytes Information: Focused on meaning and context Text Character Sets (character encoding scheme): Lists all text characters available on computer with matching binary value 11

12 Converting Binary to Decimal 123 1) Multiply the decimal digit value times the binary value in each of the eight columns. 2) Add the eight numbers found from the previous step (bottom row in the table). 12 Figure 1-7

13 Converting Decimal 123 to Binary ) If countdown > decimal digit value: a. Write a 0 for the binary digit b. Copy the countdown to the next bit position 2) If the countdown <= decimal digit value: a. Write a 1 for the binary digit b. Subtract the decimal digit value from the countdown, and place in the next bit position 13 Figure 1-8

14 Unsigned Integers in Computers, Various Sizes Size of Storage Number of Bits Range, From 0 to 2 N 1 Byte Word , Doubleword ,294,967, NOTE: Appendix B, Numeric Reference Tables, includes a table of decimal numbers 0-255, along with their 8-bit binary equivalent values. 14 Table 1-2

15 Permanent Storage for Bits, Bytes File Systems Allow computer to store bytes of single file in many locations, while still keeping track of them Files Named set of related bytes of data that OS stores as single entity (based on name) to easily refer to data 1. Unique name for each file 2. Keep bytes in order 3. Can be stored on any kind of physical storage device 4. Can be copied or moved to other devices and stored there as well 15

16 Permanent Storage for Bits, Bytes (cont.) File types examples 1. Song (.mp3,.wav) 2. YouTube video (.swf,.mpeg,.avi) 3. Text file (.txt,.rtf) 4. This PowerPoint presentation (.ppt.,.pptx) 5. High-resolution image from space telescope (.png,.jpg) 16

17 The Process of Storing Files 1. Application knows addresses in RAM that hold contents of document 2. When user clicks save and names the file, OS sends file contents over bus to storage location (drive) 3. Drive stores file 17 Figure 1-9

18 File Systems and Directories Directory - Part of file system used to organize files into hierarchy, keeping similar files together. 18 Figure 1-10

19 Mapping Files and Directories to File Content (cont.) 1. CPU attempts to read file /notes/mydoc (file mydoc in /notes folder) 2. File System supplies file information from directory, including pointer to location on disk where file physically resides 19 Figure 1-13

20 Mapping Files and Directories to File Content (cont.) 3. CPU reads file s contents from location discovered in previous step; i.e., CPU gets copy of bytes held at that particular place on disk 4. Disk drive transfers bytes of entire 1 KB file to CPU (CPU stores file in RAM so application can work with it) 20 Figure 1-13

21 File System Miscellany File system secures data; particularly useful for computers that have multiple users 1. OS may be able to assign rights per subdirectory or per file 2. Rights typically give user right to read, write (to modify file s contents), and/or to delete file 21

22 File System Miscellany (cont.) OS defines file system so type of physical storage device does not matter 1. All file system concepts apply whether storage device is disk drive, drive with removable media (e.g., DVD drive or a flash drive), or any kind of storage media 2. Important to take time to look more closely at those devices 22

23 Hard Disk Drives Most common long-term computer storage devices today Store a lot of data & do not cost a lot of money Make data available all the time Storage topics 1. Hard Disks vs. Floppy Disks 2. Hard Disk Drive Internals 3. Writing Data to Sectors, Tracks 4. Using Bus to Communicate 23

24 Hard Disks vs. Floppy Disks (cont.) 24 Figure 1-14b

25 Writing Data to Sectors, Tracks A platter has many locations that can hold magnetic charges. Physically, these locations exist in concentric circles, with each circle called a track. A sector refers to a subset of a track, as shown in the figure. 25 Figure 1-15

26 Writing Data to Sectors, Tracks (cont.) The OS (running on the CPU) has already discovered four currently-unused sectors on a platter of a hard disk. The OS next tells the drive to prepare to write the file by reserving those sectors so no other application or process tries to use them. The CPU then delivers the file contents to be written in those reserved sectors. Four sectors of 256 bytes each will hold the entire 1KB file. 26 Figure 1-16

27 Using a Bus to Communicate Bus Electrical pathway between internal components of computer CPU uses bus to connect to hard drive (uses different electrical circuits to pass control information versus data) Bus creates one or more electrical circuits between motherboard and disk drive 1. To send bit value of 0, device varies electrical current in some pre-determined way 2. To send bit value of 1, device varies electrical current in some other way 27

28 Break Take 10 28

29 Other Permanent Storage Devices Many competing types of permanent storage devices Different devices use different mechanisms to read and write data 1. USB Flash Drives 2. CD and DVD Drives 29

30 Key Comparison Points, Permanent Storage Short Description Internal or External? Removable Media? Solid State? Longer Description Does the device sit inside the computer, where is stays, or does it connect externally, so it can be easily moved between computers? Can you remove the media from the drive, and insert new blank media to record more data? Solid state means that the device has no moving parts; moving parts make it more likely to break over time Hard Disk Drive (HDD) Both No No 30 Table 1-3

31 Key Comparison Points, Permanent Storage (cont.) Short Description Read/Write Speed vs. Internal HDD Price/GB Compared to HDD Longer Description How fast do reads and writes occur, compared to an internal Hard Disk Drive (HDD)? How much does a typical device cost, per GigaByte (GB) of storage, relative to a hard disk drive (HDD)? Hard Disk Drive (HDD) N/A N/A 31 Table 1-3

32 USB Flash Drives USB flash drives provide permanent and portable storage. However, instead of using a drive that stays in the computer, with removable media, the entire (somewhat small) USB flash drive can be connected to a computer using a plug on the side of the computer Figure 1-17

33 Key Comparison Points, USB Flash and Hard Disk Drives Short Description Hard Disk USB Flash Drive Internal or External? Both External Removable Media? No Yes * Solid State? No Yes Read/Write Speed vs. Internal HDD N/A Slower Price/GB, at Publication, vs. HDD N/A More Expensive * Media cannot be removed from the drive, but the entire drive can be removed from the computer. Note: Table information may change over time, but as of publication, USB flash drives work well for convenience, portability, and low price; but are too slow and too small to be used to replace a hard disk drive. 33 Table 1-4

34 CD and DVD Drives A Short History For almost first 100 years, phonograph records distributed music Phonograph (record player) played records Needle on spinning record followed grooves to play different sounds; coined the word Groovy Magnetic tape replaced vinyl albums 1. 8-track tape 2. Cassette tape 34

35 CD and DVD Drives A Short History (cont.) These technologies used analog technology 1. Recordings made sounds analogous to sound waves onto media CD became first common digital consumer music technology 1. Digital audio storage represents each sound with bit pattern 35

36 CD and DVD Drives A Short History (cont.) DVDs followed similar history as CDs but with video VHS tape first popular format to buy movies to view at home 1. Analog magnetic tape technology Video world migrated from VHS tapes to DVDs (like CDs but for movies) DVDs used many of same ideas as CDs but with more storage capacity CDs and DVDs store bits by using optics (light) 1. Optical Disc Drives 36

37 CD and DVD Drives Compact Disc (CD) and Digital Video Disc (DVD) drives provide an entirely different class of computer storage as compared with hard disk drives and USB flash drives Figure 1-19

38 Key Comparison Points, USB Flash and Hard Disk Drives Short Description Hard Disk USB Flash Drive Optical Disc Internal or External? Both External Both Removable Media? No No1 Yes Solid State? No Yes No Read/Write Speed vs. Internal HDD N/A Slower Slower Price/GB, at Publication, vs. HDD N/A More Expensive N/A2 The last row of the table brings up an interesting comparison point: A single CD can hold 700MB of data and a DVD can hold 4.7GB. Because the discs are relatively cheap, you could store data for a similar cost per GB compared to storing data on an HDD. 38 Table 1-5

39 Input and Output (I/O) Input : Creating information in computer 1. Typing at keyboard 2. Clicking with mouse 3. Talking into computer microphone 4. Recordings from video security camera connected to computer 5. Statistics gathered by website 6. Sales data from grocery store scans 39

40 Input and Output (I/O) Output: Presents information to users and for other purposes 1. Computer display showing image or some video 2. Computer speakers playing sound 3. Printers printing images 40

41 How Keyboards Send Bits to Represent Letters To physically send bits to the computer, the keyboard varies the electrical signal over time. From example, to send a binary 1, the keyboard might use a positive voltage (the current flows in one direction), and to send a 0, use a negative voltage (current flows in opposite direction). 41 Figure 1-20

42 How Keyboards Send Bits to Represent Letters (cont.) Imagine the user has opened a text editor and is ready to practice typing The quick brown fox jumped over the lazy river. The graphic here illustrates what happens when the T is pressed (requires 2 keys, the Shift and t keys). 42 Figure 1-21

43 How Keyboards Send Bits to Represent Letters Assuming uppercase T is pressed, here is how the current flows from each pressed key to the keyboard s processor: 43 Figure 1-22

44 How Keyboards Send Bits to Represent Letters Keyboard basically monitors for pressed keys and then reacts (notices which electrical circuits have a current). The processor determines which circuits have current, then the keyboard processor uses the keyboard map to decode the circuits, and then it sends the binary code for the character to the CPU. 44 Figure 1-22

45 45 The Mouse Allows control of computer s actions but in much different way than keyboard: Point-and-Click When user moves mouse pointer, OS has list of actions to take depending on mouse action 1. Single click of left mouse button causes OS application window to become active 2. Double click of left mouse button when pointing at icon or file causes OS to start application or open file 3. Single click of right mouse button causes app or OS to display contextual menu based on where pointer was when click occurred

46 Mechanical Mice and How They Sense Movement (cont.) The mouse essentially translates the movement in any direction into movement on an X,Y graph. The internal wheels have a 90 degree separation. The wheel aligned front-to-back measures movement in the Y-axis, and the wheel aligned side-to-side measures movement in the X-axis. 46 Figure 1-23

47 Coordinating Mouse and Mouse Pointer Movements To tell the computer to move the mouse pointer, the mouse sends bits to the CPU. The bits together make up a message, with some bits stating how much movement on the X-axis (and which direction), and other bits stating how much movement on the Y-axis, plus direction. 47 Figure 1-24

48 Other Mice Many vendors also sell wireless keyboard and mice combinations, which use a single receiver for both keyboard and mouse, as shown below. 48 Figure 1-25

49 Provides output The Computer Display Also called computer monitor or screen Shines light so user can see information on screen Sits outside system unit, connecting to system using cable When system powered off, display either shows nothing or some kind of error message 49

50 The Computer Display The OS decides what to display; sends information to the display adapter; and the display adapter sends the specific details about what lights and colors of lights to use on the display to make that image show up. When the application changes the contents of the window, the app stores some binary representation of that window in memory. The OS plays the role of managing the windows and updating the entire view of the desktop. 50 Figure 1-26

51 The Computer Display (cont.) Component Location (Internal/ External) Contributes to Making Image Display on Monitor OS Display adapter Internal Internal Creates desktop Works with app windows Directs display adapter Converts binary representation of screen to commands understandable and useful to display Display External Lights pixels with colors as specified by display adapter Apps Internal Create contents inside desktop window 51 Table 1-6

52 Pixel Grids and Pixel Maps (Frame Buffers) Imagine you are back in art class and the teacher gives you a piece of paper with a grid of squares on the right and open space on the left. Your art project for the day: draw a stick figure on the left, and then draw the same stick figure inside the grid. However, when drawing in the grid, you may only color 1 square at a time, filling it in completely. 52 Figure 1-27

53 Pixel Grids and Pixel Maps (Frame Buffers) Computer displays use grid of physical lights called pixels (short for picture element) Each pixel can shine light Maximum screen resolution defines number of pixels that physically exist on display 1. Resolution lists pixel width, then depth 2. Example1280 x 1024 resolution: Grid is 1280 pixels wide and 1024 pixels tall 53

54 Pixel Grids and Pixel Maps (Frame Buffers) OS and/or display adapter builds and updates pixel map (also called frame buffer) to control display 1. Lists whether each pixel should be lit or not, and what color it is 2. Represents each pixel as bit (1=on, 0=off) 3. If map set 1 bit per pixel, has enough information to tell display what to do for each pixel 54

55 Pixel Grids and Pixel Maps (Frame Buffers) Memory required for pixel map 1. Monitor is square with screen resolution of 1000 x Matching pixel grid also 1000 x 1000 (creating 1,000,000 total pixels) 3. 1 bit per pixel = 1,000,000 bits 4. 8 bits per byte = 125,000 bytes (125 KB) NOTE: Displays that have only one color called monochrome displays 55

56 Pixel Grids and Pixel Maps (Frame Buffers) (cont.) Most displays support color that use pixels that can shine light in large variety of colors Example: To support 8 colors per pixel requires 3 bits per pixel (2 3 unique numbers) To support 256 colors, need 8 bits (1 byte=2 8 ) Typical displays today use 24 bits (3 bytes=2 24 ) or 32 bits (4=2 32 ) for colors NOTE: 24 and 32 bits creates 16 million and 4 billion (or so) colors, respectively. This granularity is needed because the human eye can distinguish very fine shades of color. Test yourself by looking at color settings with any office application. Even with 1 bit changed in a 24-bit color code, side-by-side, you can tell the two color settings apart. 56

57 Printers Convert computer file to image on paper Uses method similar in concept to how display uses pixel map to create image on screen Uses number of dots on paper organized into grid Printers identified by how many dots per inch (DPI) they print in a square inch 1. More dots per inch = Better print quality 57

58 Printers Computer has to translate from its file to mapping of dots to print 1. Example: Word processor has bytes that represent The quick brown fox jumps over the lazy river. as ASCII stored in RAM 2. To print, printer driver translates bytes to correct format to determine which dots to print on paper to form each letter 58

59 Summary: This Chapter Defined concepts behind bits and bytes Described in general terms how computers store data in Random Access Memory (RAM) Explained how computers represent text characters using bits held in RAM Discussed how computer file systems organize data 59

60 Summary: This Chapter Described in general terms how computers store data on drives Explained general steps that occur when a key is pressed on keyboard Described the basic information that a mouse sends to a computer to move the mouse pointer Explained the concepts behind a computer display s pixel map, and how computers use bits to represent pixel color 60

61 Questions? Comments? 61

Chapter 3: Computer Hardware Components: CPU, Memory, and I/O

Chapter 3: Computer Hardware Components: CPU, Memory, and I/O Chapter 3: Computer Hardware Components: CPU, Memory, and I/O What is the typical configuration of a computer sold today? The Computer Continuum 1-1 Computer Hardware Components In this chapter: How did

More information

A+ Guide to Managing and Maintaining Your PC, 7e. Chapter 1 Introducing Hardware

A+ Guide to Managing and Maintaining Your PC, 7e. Chapter 1 Introducing Hardware A+ Guide to Managing and Maintaining Your PC, 7e Chapter 1 Introducing Hardware Objectives Learn that a computer requires both hardware and software to work Learn about the many different hardware components

More information

Parts of a Computer. Preparation. Objectives. Standards. Materials. 1 1999 Micron Technology Foundation, Inc. All Rights Reserved

Parts of a Computer. Preparation. Objectives. Standards. Materials. 1 1999 Micron Technology Foundation, Inc. All Rights Reserved Parts of a Computer Preparation Grade Level: 4-9 Group Size: 20-30 Time: 75-90 Minutes Presenters: 1-3 Objectives This lesson will enable students to: Identify parts of a computer Categorize parts of a

More information

Computers. Hardware. The Central Processing Unit (CPU) CMPT 125: Lecture 1: Understanding the Computer

Computers. Hardware. The Central Processing Unit (CPU) CMPT 125: Lecture 1: Understanding the Computer Computers CMPT 125: Lecture 1: Understanding the Computer Tamara Smyth, tamaras@cs.sfu.ca School of Computing Science, Simon Fraser University January 3, 2009 A computer performs 2 basic functions: 1.

More information

CHAPTER 2: HARDWARE BASICS: INSIDE THE BOX

CHAPTER 2: HARDWARE BASICS: INSIDE THE BOX CHAPTER 2: HARDWARE BASICS: INSIDE THE BOX Multiple Choice: 1. Processing information involves: A. accepting information from the outside world. B. communication with another computer. C. performing arithmetic

More information

Primary Memory. Input Units CPU (Central Processing Unit)

Primary Memory. Input Units CPU (Central Processing Unit) Basic Concepts of Computer Hardware Primary Memory Input Units CPU (Central Processing Unit) Output Units This model of the typical digital computer is often called the von Neuman compute Programs and

More information

lesson 1 An Overview of the Computer System

lesson 1 An Overview of the Computer System essential concepts lesson 1 An Overview of the Computer System This lesson includes the following sections: The Computer System Defined Hardware: The Nuts and Bolts of the Machine Software: Bringing the

More information

Obj: Sec 1.0, to describe the relationship between hardware and software HW: Read p.2 9. Do Now: Name 3 parts of the computer.

Obj: Sec 1.0, to describe the relationship between hardware and software HW: Read p.2 9. Do Now: Name 3 parts of the computer. C1 D1 Obj: Sec 1.0, to describe the relationship between hardware and software HW: Read p.2 9 Do Now: Name 3 parts of the computer. 1 Hardware and Software Hardware the physical, tangible parts of a computer

More information

CSCA0102 IT & Business Applications. Foundation in Business Information Technology School of Engineering & Computing Sciences FTMS College Global

CSCA0102 IT & Business Applications. Foundation in Business Information Technology School of Engineering & Computing Sciences FTMS College Global CSCA0102 IT & Business Applications Foundation in Business Information Technology School of Engineering & Computing Sciences FTMS College Global Chapter 2 Data Storage Concepts System Unit The system unit

More information

File Management Windows XP Word 2007. What is File Management?

File Management Windows XP Word 2007. What is File Management? File Management Windows XP Word 2007 What is File Management? As you use your computer and create files you may need some help in storing and retrieving those files. File management shows you how to create,

More information

Computer Hardware HARDWARE. Computer Hardware. Mainboard (Motherboard) Instructor Özgür ZEYDAN

Computer Hardware HARDWARE. Computer Hardware. Mainboard (Motherboard) Instructor Özgür ZEYDAN Computer Hardware HARDWARE Hardware: the collection of physical elements that comprise a computer system. Bülent Ecevit University Department of Environmental Engineering 1. Case and inside 2. Peripherals

More information

Chapter 6. Inside the System Unit. What You Will Learn... Computers Are Your Future. What You Will Learn... Describing Hardware Performance

Chapter 6. Inside the System Unit. What You Will Learn... Computers Are Your Future. What You Will Learn... Describing Hardware Performance What You Will Learn... Computers Are Your Future Chapter 6 Understand how computers represent data Understand the measurements used to describe data transfer rates and data storage capacity List the components

More information

Lesson Plan. Preparation

Lesson Plan. Preparation Lesson Plan Course Title: Computer Maintenance Session Title: Hard Drives Lesson Duration: 90 Minutes Performance Objective: Upon completion of this assignment, the student will be able to recognize a

More information

How To Store Data On A Computer (For A Computer)

How To Store Data On A Computer (For A Computer) TH3. Data storage http://www.bbc.co.uk/schools/gcsebitesize/ict/ A computer uses two types of storage. A main store consisting of ROM and RAM, and backing stores which can be internal, eg hard disk, or

More information

TEST CHAPTERS 1 & 2 OPERATING SYSTEMS

TEST CHAPTERS 1 & 2 OPERATING SYSTEMS TEST CHAPTERS 1 & 2 OPERATING SYSTEMS True/False Indicate whether the statement is true or false. 1. Changes that you make in virtual machines do not affect your physical computer. 2. The size of a bus

More information

Fall 2009. Lecture 1. Operating Systems: Configuration & Use CIS345. Introduction to Operating Systems. Mostafa Z. Ali. mzali@just.edu.

Fall 2009. Lecture 1. Operating Systems: Configuration & Use CIS345. Introduction to Operating Systems. Mostafa Z. Ali. mzali@just.edu. Fall 2009 Lecture 1 Operating Systems: Configuration & Use CIS345 Introduction to Operating Systems Mostafa Z. Ali mzali@just.edu.jo 1-1 Chapter 1 Introduction to Operating Systems An Overview of Microcomputers

More information

Figure 1. Front and Back of a Computer Case

Figure 1. Front and Back of a Computer Case Introduction Almost everyone uses a computer daily, but many don't know how a computer works or all the different individual pieces that make it up. In fact, many people erroneously look at a computer

More information

File Management Using Microsoft Windows

File Management Using Microsoft Windows File Management Using Microsoft Windows lab 2 Objectives: Upon successful completion of Lab 2, you will be able to Define the terms file and folder Understand file and memory storage capacity concepts

More information

Computer Logic (2.2.3)

Computer Logic (2.2.3) Computer Logic (2.2.3) Distinction between analogue and discrete processes and quantities. Conversion of analogue quantities to digital form. Using sampling techniques, use of 2-state electronic devices

More information

The computer's internal components

The computer's internal components Computer hardware and types of computer A brief introduction to the insides of a computer and its added hardware. This will help explain what a computer is from a hardware point of view, how we control

More information

Block diagram of typical laptop/desktop

Block diagram of typical laptop/desktop What's in a computer? logical or functional organization: "architecture" what the pieces are, what they do, how they work how they are connected, how they work together what their properties are physical

More information

Management Challenge. Managing Hardware Assets. Central Processing Unit. What is a Computer System?

Management Challenge. Managing Hardware Assets. Central Processing Unit. What is a Computer System? Management Challenge Managing Hardware Assets What computer processing and storage capability does our organization need to handle its information and business transactions? What arrangement of computers

More information

Tech Application Chapter 3 STUDY GUIDE

Tech Application Chapter 3 STUDY GUIDE Name: Class: Date: Tech Application Chapter 3 STUDY GUIDE Multiple Choice Identify the letter of the choice that best completes the statement or answers the question. 1. This type of device retains data

More information

Prof. Dr. M. H. Assal

Prof. Dr. M. H. Assal Prof. Dr. M. H. Assal AS 26/10/2014 Computer hardware is the collection of physical elements that comprise a computer system Computer hardware can be classified as following: o Input devices o Output devices

More information

Chapter 8 Memory Units

Chapter 8 Memory Units Chapter 8 Memory Units Contents: I. Introduction Basic units of Measurement II. RAM,ROM,PROM,EPROM Storage versus Memory III. Auxiliary Storage Devices-Magnetic Tape, Hard Disk, Floppy Disk IV.Optical

More information

Logical Operations. Control Unit. Contents. Arithmetic Operations. Objectives. The Central Processing Unit: Arithmetic / Logic Unit.

Logical Operations. Control Unit. Contents. Arithmetic Operations. Objectives. The Central Processing Unit: Arithmetic / Logic Unit. Objectives The Central Processing Unit: What Goes on Inside the Computer Chapter 4 Identify the components of the central processing unit and how they work together and interact with memory Describe how

More information

Technical Product Specifications Dell Dimension 2400 Created by: Scott Puckett

Technical Product Specifications Dell Dimension 2400 Created by: Scott Puckett Technical Product Specifications Dell Dimension 2400 Created by: Scott Puckett Page 1 of 11 Table of Contents Technical Product Specifications Model 3 PC Technical Diagrams Front Exterior Specifications

More information

Digital Versus Analog Lesson 2 of 2

Digital Versus Analog Lesson 2 of 2 Digital Versus Analog Lesson 2 of 2 HDTV Grade Level: 9-12 Subject(s): Science, Technology Prep Time: < 10 minutes Activity Duration: 50 minutes Materials Category: General classroom National Education

More information

Computer Storage. Computer Technology. (S1 Obj 2-3 and S3 Obj 1-1)

Computer Storage. Computer Technology. (S1 Obj 2-3 and S3 Obj 1-1) Computer Storage Computer Technology (S1 Obj 2-3 and S3 Obj 1-1) Storage The place in the computer where data is held while it is not needed for processing A storage device is device used to record (store)

More information

Main Memory & Backing Store. Main memory backing storage devices

Main Memory & Backing Store. Main memory backing storage devices Main Memory & Backing Store Main memory backing storage devices 1 Introduction computers store programs & data in two different ways: nmain memory ntemporarily stores programs & data that are being processed

More information

A computer running Windows Vista or Mac OS X

A computer running Windows Vista or Mac OS X lab File Management Objectives: Upon successful completion of Lab 2, you will be able to Define the terms file and folder Understand file and memory storage capacity concepts including byte, kilobyte,

More information

Quick Start Using DASYLab with your Measurement Computing USB device

Quick Start Using DASYLab with your Measurement Computing USB device Quick Start Using DASYLab with your Measurement Computing USB device Thank you for purchasing a USB data acquisition device from Measurement Computing Corporation (MCC). This Quick Start document contains

More information

Created by the St. Dorothy s Project Team Updated by Oksana Maibroda

Created by the St. Dorothy s Project Team Updated by Oksana Maibroda Computer Basics ICT Training Updated: May 2002 Job Aid Created by the St. Dorothy s Project Team Updated by Oksana Maibroda Introduction to computer basics for Macintosh computers Welcome to this training

More information

Easy VHS to DVD 3 & Easy VHS to DVD 3 Plus. Getting Started Guide

Easy VHS to DVD 3 & Easy VHS to DVD 3 Plus. Getting Started Guide Easy VHS to DVD 3 & Easy VHS to DVD 3 Plus Getting Started Guide ii Roxio Easy VHS to DVD Getting Started Guide www.roxio.com Get Started with Roxio Easy VHS to DVD 3 In this guide Welcome to Roxio Easy

More information

CHAPTER 3: DIGITAL IMAGING IN DIAGNOSTIC RADIOLOGY. 3.1 Basic Concepts of Digital Imaging

CHAPTER 3: DIGITAL IMAGING IN DIAGNOSTIC RADIOLOGY. 3.1 Basic Concepts of Digital Imaging Physics of Medical X-Ray Imaging (1) Chapter 3 CHAPTER 3: DIGITAL IMAGING IN DIAGNOSTIC RADIOLOGY 3.1 Basic Concepts of Digital Imaging Unlike conventional radiography that generates images on film through

More information

1.1 Electronic Computers Then and Now

1.1 Electronic Computers Then and Now 1.1 Electronic Computers Then and Now The first electronic computer was built in the late 1930s by Dr.John Atanasoff and Clifford Berry at Iowa State University in USA. They designed their computer to

More information

Computer Organization

Computer Organization Basics Machine, software, and program design JPC and JWD 2002 McGraw-Hill, Inc. Computer Organization CPU - central processing unit Where decisions are made, computations are performed, and input/output

More information

itunes Basics Website: http://etc.usf.edu/te/

itunes Basics Website: http://etc.usf.edu/te/ Website: http://etc.usf.edu/te/ itunes is the digital media management program included in ilife. With itunes you can easily import songs from your favorite CDs or purchase them from the itunes Store.

More information

Desktop Publishing 5N0785 Learning Outcome 2 Monaghan Institute Level 5 Module

Desktop Publishing 5N0785 Learning Outcome 2 Monaghan Institute Level 5 Module Desktop Publishing 5N0785 Learning Outcome 2 Monaghan Institute Level 5 Module Contents Learners will be able to describe the characteristics of key components of DTP systems including those used for input,

More information

Chapter 4 System Unit Components. Discovering Computers 2012. Your Interactive Guide to the Digital World

Chapter 4 System Unit Components. Discovering Computers 2012. Your Interactive Guide to the Digital World Chapter 4 System Unit Components Discovering Computers 2012 Your Interactive Guide to the Digital World Objectives Overview Differentiate among various styles of system units on desktop computers, notebook

More information

Introduction To Computers: Hardware and Software

Introduction To Computers: Hardware and Software What Is Hardware? Introduction To Computers: Hardware and Software A computer is made up of hardware. Hardware is the physical components of a computer system e.g., a monitor, keyboard, mouse and the computer

More information

A Computer Glossary. For the New York Farm Viability Institute Computer Training Courses

A Computer Glossary. For the New York Farm Viability Institute Computer Training Courses A Computer Glossary For the New York Farm Viability Institute Computer Training Courses 2006 GLOSSARY This Glossary is primarily applicable to DOS- and Windows-based machines and applications. Address:

More information

CHAPTER 3: HARDWARE BASICS: PERIPHERALS

CHAPTER 3: HARDWARE BASICS: PERIPHERALS CHAPTER 3: HARDWARE BASICS: PERIPHERALS Multiple Choice: 1. is the early operating system developed by Microsoft A. Monitor B. MS-DOS C. Mouse D. Video games Answer: B Reference: Bill Gates Rides the Digital

More information

Computers Are Your Future. 2005 Prentice-Hall, Inc.

Computers Are Your Future. 2005 Prentice-Hall, Inc. Computers Are Your Future 2005 Prentice-Hall, Inc. Computers Are Your Future Chapter 5 Input/Output and Storage 200 Prentice-Hall, Inc Slide 2 What You Will Learn About The purpose of special keys and

More information

Discovering Computers 2011. Living in a Digital World

Discovering Computers 2011. Living in a Digital World Discovering Computers 2011 Living in a Digital World Objectives Overview Differentiate among various styles of system units on desktop computers, notebook computers, and mobile devices Identify chips,

More information

Discovering Computers 2008. Chapter 7 Storage

Discovering Computers 2008. Chapter 7 Storage Discovering Computers 2008 Chapter 7 Storage Chapter 7 Objectives Differentiate between storage devices and storage media Describe the characteristics of magnetic disks Describe the characteristics of

More information

Machine Architecture and Number Systems. Major Computer Components. Schematic Diagram of a Computer. The CPU. The Bus. Main Memory.

Machine Architecture and Number Systems. Major Computer Components. Schematic Diagram of a Computer. The CPU. The Bus. Main Memory. 1 Topics Machine Architecture and Number Systems Major Computer Components Bits, Bytes, and Words The Decimal Number System The Binary Number System Converting from Decimal to Binary Major Computer Components

More information

What's in a computer?

What's in a computer? What's in a computer? logical or functional organization: "architecture" what the pieces are, what they do, how they work how they are connected, how they work together what their properties are physical

More information

2011, The McGraw-Hill Companies, Inc. Chapter 3

2011, The McGraw-Hill Companies, Inc. Chapter 3 Chapter 3 3.1 Decimal System The radix or base of a number system determines the total number of different symbols or digits used by that system. The decimal system has a base of 10 with the digits 0 through

More information

Writing Assignment #2 due Today (5:00pm) - Post on your CSC101 webpage - Ask if you have questions! Lab #2 Today. Quiz #1 Tomorrow (Lectures 1-7)

Writing Assignment #2 due Today (5:00pm) - Post on your CSC101 webpage - Ask if you have questions! Lab #2 Today. Quiz #1 Tomorrow (Lectures 1-7) Overview of Computer Science CSC 101 Summer 2011 Main Memory vs. Auxiliary Storage Lecture 7 July 14, 2011 Announcements Writing Assignment #2 due Today (5:00pm) - Post on your CSC101 webpage - Ask if

More information

1 PERSONAL COMPUTERS

1 PERSONAL COMPUTERS PERSONAL COMPUTERS 1 2 Personal computer a desktop computer a laptop a tablet PC or a handheld PC Software applications for personal computers include word processing spreadsheets databases web browsers

More information

ELECTRONIC DOCUMENT IMAGING

ELECTRONIC DOCUMENT IMAGING AIIM: Association for Information and Image Management. Trade association and professional society for the micrographics, optical disk and electronic image management markets. Algorithm: Prescribed set

More information

Quick user guide for the Vista Quantum 960H range of DVRs, models included

Quick user guide for the Vista Quantum 960H range of DVRs, models included Quantum 960H DVR range Quick User guide Quick user guide for the Vista Quantum 960H range of DVRs, models included QX960H08-xxx QX960H16-xxx QP960H04-xxx QP960H08-xxx QP960H16-xxx Full manual found on

More information

Chapter One Introduction to Computer

Chapter One Introduction to Computer Chapter One Introduction to Computer Computer A computer is an electronic device, operating under the control of instructions stored in its own memory that can accept data (input), process the data according

More information

EasyCAP Video Capture with Audio Quick Installation Guide

EasyCAP Video Capture with Audio Quick Installation Guide Overview EasyCAP Video Capture with Audio Quick Installation Guide The EasyCAP USB 2.0 Video Capture with Audio, it can capture High-quality video and audio file direct by USB 2.0 interface without sound

More information

Computer Basics: Chapters 1 & 2

Computer Basics: Chapters 1 & 2 Computer Basics: Chapters 1 & 2 Definition of a Computer What does IPOS stand for? Input Process Output Storage Other types of Computers Name some examples of other types of computers, other than a typical

More information

Acer LCD Monitor Driver Installation Guide

Acer LCD Monitor Driver Installation Guide 1 Contents 1 Contents... 1 2 Introduction... 2 3 Installation Guide... 2 3.1 PC requirements... 2 3.2 Installing the Acer LCD Monitor Driver on Windows Vista... 3 3.2.1 Hardware first install... 3 3.2.2

More information

McGraw-Hill Technology Education McGraw-Hill Technology Education

McGraw-Hill Technology Education McGraw-Hill Technology Education McGraw-Hill Technology Education McGraw-Hill Technology Education Copyright 2006 by The McGraw-Hill Companies, Inc. All rights reserved. Copyright 2006 by The McGraw-Hill Companies, Inc. All rights reserved.

More information

Chapter 7 Types of Storage. Discovering Computers 2012. Your Interactive Guide to the Digital World

Chapter 7 Types of Storage. Discovering Computers 2012. Your Interactive Guide to the Digital World Chapter 7 Types of Storage Discovering Computers 2012 Your Interactive Guide to the Digital World Objectives Overview Differentiate between storage devices and storage media Describe the characteristics

More information

Technology in Action. Alan Evans Kendall Martin Mary Anne Poatsy. Tenth Edition. Copyright 2014 Pearson Education, Inc. Publishing as Prentice Hall

Technology in Action. Alan Evans Kendall Martin Mary Anne Poatsy. Tenth Edition. Copyright 2014 Pearson Education, Inc. Publishing as Prentice Hall Technology in Action Alan Evans Kendall Martin Mary Anne Poatsy Tenth Edition Copyright 2014 Pearson Education, Inc. Publishing as Prentice Hall Technology in Action Chapter 2 Looking at Computers Understanding

More information

STUDY GUIDE CHAPTER 1

STUDY GUIDE CHAPTER 1 STUDY GUIDE CHAPTER 1 True/False Indicate whether the statement is true or false. 1. Digital technology has made it easy to produce copies of music with no loss of quality from the original. 2. Free source

More information

This lesson can be adapted to the grade level by the presenter. Decide the level of content and activities as appropriate.

This lesson can be adapted to the grade level by the presenter. Decide the level of content and activities as appropriate. Binary Coding Preparation Grade Level: K-5 Group Size: 20-30 Time: 50 Minutes Presenters: 1-3 This lesson can be adapted to the grade level by the presenter. Decide the level of content and activities

More information

Page 1 S5.5 Monitoring Software Manual Rev 1.2 for Software Ver 1.0

Page 1 S5.5 Monitoring Software Manual Rev 1.2 for Software Ver 1.0 Trantec S5.5 Monitoring Software Manual Initial Setup Minimum PC Requirements 1.6 GHz CPU, 256 MB Memory, 1 available USB port, Windows XP Recommended PC >2.0 GHz CPU, 512 MB (XP) 1 GB (Vista) memory,

More information

K Hinds 2015 Kumar1.ajm1@gmail.com www.smsbarbados.wordpress.com Page No. 1. Lecture 3 ASCII

K Hinds 2015 Kumar1.ajm1@gmail.com www.smsbarbados.wordpress.com Page No. 1. Lecture 3 ASCII www.smsbarbados.wordpress.com Page No. 1 ASCII Lecture 3 ASCII stands for American Standard Code for Information Interchange. Computers can only understand numbers, so an ASCII code is the numerical representation

More information

CSCA0201 FUNDAMENTALS OF COMPUTING. Chapter 5 Storage Devices

CSCA0201 FUNDAMENTALS OF COMPUTING. Chapter 5 Storage Devices CSCA0201 FUNDAMENTALS OF COMPUTING Chapter 5 Storage Devices 1 1. Computer Data Storage 2. Types of Storage 3. Storage Device Features 4. Other Examples of Storage Device 2 Storage Devices A storage device

More information

Count the Dots Binary Numbers

Count the Dots Binary Numbers Activity 1 Count the Dots Binary Numbers Summary Data in computers is stored and transmitted as a series of zeros and ones. How can we represent words and numbers using just these two symbols? Curriculum

More information

Tomorrow s Technology and You

Tomorrow s Technology and You Tomorrow s Technology and You 8 th Edition Slide 1 Tomorrow s Technology and You 8/e Hardware Basics: Peripherals Slide 2 Objectives List several examples of input devices and explain how they can make

More information

How do I Check if My Computer is Compatible with Windows 7

How do I Check if My Computer is Compatible with Windows 7 How do I Check if My Computer is Compatible with Windows 7 Enterprise Computing & Service Management 1 Follow this link to download the Windows 7 Upgrade Advisor http://www.microsoft.com/windows/windows-7/get/upgrade-advisor.aspx

More information

MULTIPLE CHOICE FREE RESPONSE QUESTIONS

MULTIPLE CHOICE FREE RESPONSE QUESTIONS MULTIPLE CHOICE FREE RESPONSE QUESTIONS World ORT Union I n p u t d e v i c e s Where would you find the letters QUERTY? A. Mouse B. Keyboard C.Numeric Keypad How did the computer mouse get its name? A.

More information

Introduction To Microsoft Office PowerPoint 2007. Bob Booth July 2008 AP-PPT5

Introduction To Microsoft Office PowerPoint 2007. Bob Booth July 2008 AP-PPT5 Introduction To Microsoft Office PowerPoint 2007. Bob Booth July 2008 AP-PPT5 University of Sheffield Contents 1. INTRODUCTION... 3 2. GETTING STARTED... 4 2.1 STARTING POWERPOINT... 4 3. THE USER INTERFACE...

More information

DENON DJ Music Manager

DENON DJ Music Manager DENON DJ Music Manager DENON DJ Music Manager has the functions described below Creation and updating of databases Playback function Editing of file data Searching for files Creation and updating of playlists

More information

Using Windows Movie Maker to Create Movies

Using Windows Movie Maker to Create Movies Using Windows Movie Maker to Create Movies Windows Movie Maker 2.1 is free! It comes with Windows XP or can be downloaded from the Microsoft Website. http://www.microsoft.com/windowsxp/downloads/updates/moviemaker2.mspx

More information

Today we will learn about:

Today we will learn about: Storage Devices Today we will learn about: Storage Devices Ancient technology (from my days as a student) Floppies CD_ROM, DVDs Hard drives Magnetic tape Storage versus Memory Memory holds data, programs

More information

Traveling Circuits Lesson 1 Binary Baubles

Traveling Circuits Lesson 1 Binary Baubles Lesson Binary Baubles a one hour introductory activity adapted for CSED Week 203 Copyright 203 Thinkersmith PO Box 4286, Eugene, OR, 97404 This version of the lesson Binary Baubles is brought to you under

More information

HOW TO BURN A CD/DVD IN WINDOWS XP. Data Projects

HOW TO BURN A CD/DVD IN WINDOWS XP. Data Projects Page 1 HOW TO BURN A CD/DVD IN WINDOWS XP There are two ways to burn files to a CD or DVD using Windows XP: 1. Using Sonic RecordNow! Plus or 2. Using the Windows Explorer CD Burning with Sonic Recordnow!

More information

MEMORY STORAGE CALCULATIONS. Professor Jonathan Eckstein (adapted from a document due to M. Sklar and C. Iyigun)

MEMORY STORAGE CALCULATIONS. Professor Jonathan Eckstein (adapted from a document due to M. Sklar and C. Iyigun) 1/29/2007 Calculations Page 1 MEMORY STORAGE CALCULATIONS Professor Jonathan Eckstein (adapted from a document due to M. Sklar and C. Iyigun) An important issue in the construction and maintenance of information

More information

Lower School. Third Grade

Lower School. Third Grade Lower School The goal of the Lower School Computer curriculum is to continue to develop technology skills for both academic learning and personal productivity in the 21 st century. Students learn the science

More information

Data Storage. Chapter 3. Objectives. 3-1 Data Types. Data Inside the Computer. After studying this chapter, students should be able to:

Data Storage. Chapter 3. Objectives. 3-1 Data Types. Data Inside the Computer. After studying this chapter, students should be able to: Chapter 3 Data Storage Objectives After studying this chapter, students should be able to: List five different data types used in a computer. Describe how integers are stored in a computer. Describe how

More information

Chapter 5 Understanding Input. Discovering Computers 2012. Your Interactive Guide to the Digital World

Chapter 5 Understanding Input. Discovering Computers 2012. Your Interactive Guide to the Digital World Chapter 5 Understanding Input Discovering Computers 2012 Your Interactive Guide to the Digital World Objectives Overview Define input and differentiate among a program, command, and user response Identify

More information

Internet and Computing Core Certification Guide Module A Computing Fundamentals

Internet and Computing Core Certification Guide Module A Computing Fundamentals Lesson 4: Using Input/Output Devices input/output devices common input devices common output devices specialized devices how a device connects what a port is what a device driver is What are Input/Output

More information

Media Backup Storage Device. Operation Manual

Media Backup Storage Device. Operation Manual Media Backup Storage Device CGA-02540 - Black CGA-02541 - White Operation Manual 20061201 Page 1 of 23 CONGRATULATIONS on your purchase of a Polaroid media backup storage device. Please read carefully

More information

VHS2DVD Wizard User's Manual

VHS2DVD Wizard User's Manual VHS2DVD Wizard User's Manual Table of Contents 1. Installation Instructions a. Installation Package Contents b. Installation Instructions c. Setting Up the Computer for Video Capturing i. Adjust the Screen

More information

Computer Peripherals

Computer Peripherals Computer Peripherals Reading: Chapter 10 (except 10.6) Peripherals Devices that are separate from the basic computer Not the CPU, memory, or power supply Classified as input, output, and storage Connect

More information

SPECIMEN A451 GENERAL CERTIFICATE OF SECONDARY EDUCATION COMPUTING. Duration: 1 hour 30 minutes. Unit A451: Computer systems and programming

SPECIMEN A451 GENERAL CERTIFICATE OF SECONDARY EDUCATION COMPUTING. Duration: 1 hour 30 minutes. Unit A451: Computer systems and programming SPECIMEN GENERAL CERTIFICATE OF SECONDARY EDUCATION COMPUTING Unit A451: Computer systems and programming A451 Candidates answer on the Question Paper OCR Supplied Materials None Other Materials Required:

More information

Microsoft Windows Overview Desktop Parts

Microsoft Windows Overview Desktop Parts Microsoft Windows Overview Desktop Parts Icon Shortcut Icon Window Title Bar Menu Bar Program name Scroll Bar File Wallpaper Folder Start Button Quick Launch Task Bar or Start Bar Time/Date function 1

More information

Introduction to Computers, Anatomy of Computers, Input and Output Devices

Introduction to Computers, Anatomy of Computers, Input and Output Devices LECTURE SCHEDULE 1 Introduction to Computers, Anatomy of Computers, Input and Output Devices In human affairs we have reached a point where the problems that we must solve are no longer solvable without

More information

COMPUTER - INPUT DEVICES

COMPUTER - INPUT DEVICES COMPUTER - INPUT DEVICES http://www.tutorialspoint.com/computer_fundamentals/computer_input_devices.htm Copyright tutorialspoint.com Following are few of the important input devices which are used in a

More information

Here are my slides from lecture, along with my notes about each slide.

Here are my slides from lecture, along with my notes about each slide. Chapter 3: Storage Here are my slides from lecture, along with my notes about each slide. NOTE: You are expected to attend all class meetings. Please be in the room when class begins and be ready to participate

More information

Hardware: Input, Processing, and Output Devices. A PC in Every Home. Assembling a Computer System

Hardware: Input, Processing, and Output Devices. A PC in Every Home. Assembling a Computer System C H A P T E R 3 Hardware: Input, Processing, and Output Devices A PC in Every Home February 3, 2000 Ford will make available to all 330,000 employees hourly and salaried an HP Pavilion PC, an HP DeskJet

More information

Embroidery Fonts Plus ( EFP ) Tutorial Guide Version 1.0505

Embroidery Fonts Plus ( EFP ) Tutorial Guide Version 1.0505 Embroidery Fonts Plus ( EFP ) Tutorial Guide Version 1.0505 1 Contents Chapter 1 System Requirements.................. 3 Chapter 2 Quick Start Installation.................. 4 System Requirements................

More information

SMART Board User Guide for PC

SMART Board User Guide for PC SMART Board User Guide for PC What is it? The SMART Board is an interactive whiteboard available in an increasing number of classrooms at the University of Tennessee. While your laptop image is projected

More information

Understanding Digital Components

Understanding Digital Components Understanding Digital Components Understanding Your Computer Input Devices and Output Devices Copyright 2016 Pearson Education, Inc. 2-2 Understanding Your Computer Objectives 1. What exactly is a computer

More information

File Management Windows

File Management Windows File Management Windows : Explorer Navigating the Windows File Structure 1. The Windows Explorer can be opened from the Start Button, Programs menu and clicking on the Windows Explorer application OR by

More information

SMART BOARD USER GUIDE FOR PC TABLE OF CONTENTS I. BEFORE YOU USE THE SMART BOARD. What is it?

SMART BOARD USER GUIDE FOR PC TABLE OF CONTENTS I. BEFORE YOU USE THE SMART BOARD. What is it? SMART BOARD USER GUIDE FOR PC What is it? SMART Board is an interactive whiteboard available in an increasing number of classrooms at the University of Tennessee. While your laptop image is projected on

More information

SMART Board Menu. Full Reference Guide

SMART Board Menu. Full Reference Guide SMART Board Full Reference Guide Start-Up After entering Windows, click on the desktop icon SMART Board Tools. The SMART Board icon will appear in the system tray on the bottom right of the screen. Turn

More information

GETTING STARTED WITH STUDIO ONE ARTIST

GETTING STARTED WITH STUDIO ONE ARTIST GETTING STARTED WITH STUDIO ONE ARTIST 2009, PreSonus Audio Electronics, Inc. All Rights Reserved. TABLE OF CONTENTS Studio One Artist Features...3 System Requirements...4 Installation and Authorization...5

More information

winhex Disk Editor, RAM Editor PRESENTED BY: OMAR ZYADAT and LOAI HATTAR

winhex Disk Editor, RAM Editor PRESENTED BY: OMAR ZYADAT and LOAI HATTAR winhex Disk Editor, RAM Editor PRESENTED BY: OMAR ZYADAT and LOAI HATTAR Supervised by : Dr. Lo'ai Tawalbeh New York Institute of Technology (NYIT)-Jordan X-Ways Software Technology AG is a stock corporation

More information

Operating Systems. and Windows

Operating Systems. and Windows Operating Systems and Windows What is an Operating System? The most important program that runs on your computer. It manages all other programs on the machine. Every PC has to have one to run other applications

More information

ADVANCED PROCESSOR ARCHITECTURES AND MEMORY ORGANISATION Lesson-17: Memory organisation, and types of memory

ADVANCED PROCESSOR ARCHITECTURES AND MEMORY ORGANISATION Lesson-17: Memory organisation, and types of memory ADVANCED PROCESSOR ARCHITECTURES AND MEMORY ORGANISATION Lesson-17: Memory organisation, and types of memory 1 1. Memory Organisation 2 Random access model A memory-, a data byte, or a word, or a double

More information

Digital Image Formation. Storage Technology

Digital Image Formation. Storage Technology Digital Image Formation Storage Technology Storage Technology Quiz Name one type of data storage?! Storage Technology Data Storage Device is a device for recording (storing) information (data).!! Recording

More information