Top Banner
Computer Systems MELJUN CORTES,BSCS,ACS
96

MELJUN Computer System Foundation

May 30, 2018

Download

Documents

Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 1/96

ComputerSystems

MELJUN CORTES,BSCS,ACS

Page 2: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 2/96

What is this unit about?

• Languages and translators

• Operating Systems

• Low-level machine

• Hardware

– Backing storage

– Input devices

– Output devices

0  1 0  1 0  1 0  1 0  

1 0  1 1 1 1 1 1 1 

1 1 

   I  /  O

F o r  c o u nt e r  = 1 t o  3 0  

P r i nt  “ E nt e r ” 

Page 3: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 3/96

01010101100001110101011010101101010101011101010010100101010101010101011011111111010010110101011010101010111010100101001010101011011111111010010110101011010101010111010100101001010101101101111111101001011010101101010101011101010010100101010110110111111110100101101010110101010101110101001010010101011011011111111010010110101011010101010111010100101001010101101101111111

1010010110101011010101010111010100101001010101101101111111101001011010101101010101011101010010100101010110110111111110100101101010110101010101110101001010010101011011011111111010010110

10101101010101011101010010100101010110101010101101110101101010110101010101110101001010010101010101010101010110111010110101011010101010111010100101001010101010101010110111010110101011010101010111010110111111110100101101010110101010

1011101010010100101010110100101001010101010101

Machine Code

Page 4: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 4/96

What does this say?

 Je ne parle pas Français ainsi je ne peux pas comprendrececi ! !

I don't speak French so I can't understand this!!

=

Page 5: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 5/96

Languages and

Translators• Computers only understand 1s and 0s

• This is called machine code.

• It is very hard for people to read andunderstand

Instead of trying to write machinecode, we use high level languages toprogram.

Page 6: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 6/96

High-level languages

What does a high-level language looklike?

PRINT “PLEASE ENTER YOUR AGE”

INPUT AGE

PRINT

“YOU ARE

“: AGE

Short Instructions like sentences

Made up of English words

Page 7: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 7/96

High-level languages• High-level languages are portable.

• They can be translated into manydifferent versions of machine code

• Machine code is not portable as it onlyworks for a certain processor

PRINT “PLEASE ENTER YOUR  AGE”

INPUT AGE

PRINT “YOU ARE “: AGE

 Translator

 0 1 0 1 0

 1 1 00 1 0 1 0 1 1 0 0       

1      0       1      0       1      1      0       

Page 8: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 8/96

Page 9: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 9/96

SummaryComputers only understand 1s and 0s, which we callmachine code.

Humans write programs in high level languagesbecause they are like English, and can be translatedinto machine code.

High level languages can be portable which means

they can be translated into different kinds of machinecode. 

Page 10: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 10/96

Operating Systems

An operating system controls all thetasks the computer does for you

Reads in data from keyboardand mouse

Sends text and

graphics to thescreen

Sends datato yourprinter

• Loads data into thememory from the HardDisk

• Saves your files to disk

Page 11: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 11/96

Examples of OperatingSystems

• Microsoft Windows

• Apple Mac OS X

• Linux

But NOT things like:

• Microsoft Word

• Games• Internet Explorer

– These are programs that run on theOperating System

Page 12: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 12/96

Types of File

 There are two different types of file:

Program files, which are files full of instructions that the system runs.Microsoft Word is a program file.

Data files, which are used by programs.A Microsoft Word document (like a letteryou wrote and saved) is a data file.

Page 13: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 13/96

HH

 CC

umanuman

omputeromputer

nterfacenterface

Page 14: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 14/96

Human Computer Interface

• The Operating System provides theHCI for the user

• User uses mouse to click icons• Operating System translates into

instructions

– What was clicked?– What should be done now (load file,

save file, load program)?

Page 15: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 15/96

Types of Operating System

Interactive System– Computer reacts to user requests

immediately and processes the data

– Example: Internet ticket booking (Travel,

Concert)

What would happen if the system

wasn’t interactive?

1. User clicks on link to buy ticket

2. System checks immediately if there is

a ticket available

3. Ticket is booked for the user

Page 16: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 16/96

Types of Operating System

Real Time System– Real time systems react even faster thaninteractive systems

– Designed to always process the rightamount of information in time

–  This means the Real Time system isinstant every time

Used in spaceship control systems,

nuclear reactors…..

Where else would Real Time

Systems be used instead of Interactive S stems?

Page 17: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 17/96

Summary

Operating systems control the tasks the computer does for theuser. This includes loading data into memory, reading data fromthey keyboard and mouse, saving files and sending text andgraphics to the screen or printer.

 There are two types of file - program files (such as Microsoft

Word) and data files, that are used by program files (such as aletter your wrote in Microsoft Word)

We interact with the OS through the Human Computer Interface(HCI). The OS translates the keyboard and mouse presses into

instructions and performs actions such as loading and savingfiles.

Interactive operating systems are used when users needimmediate feedback. Real-time operating systems are usedwhen systems always need instant results (such as a control

system on a plane).

Page 18: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 18/96

Check your understanding

What kind of system would you use forthe following (choose frombackground, interactive and real-time):

• Flight booking web site

• Controlling a robot?

• On a home computer?• Running a nuclear reactor

Int er act iv eReal-

T imeInt er act iv e

Real-t ime

Page 19: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 19/96

More Checking!

• What jobs does the Operating System do?• Give an example of an Operating System?

• What are the 2 types of file?

• What does the HCI do?

• When would Interactive Processing be used?• When would Real-Time Processing be used?

Page 20: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 20/96

Filing Systems

• It is very wise to organise yourfiles!

• Lots of files in the one place =hard to organise

• Group them in directories

Page 21: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 21/96

Filing System

 The OperatingSystem sorts our

data usingdirectories(often called

folders) and files.

Page 22: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 22/96

Low Level Machine

• We now know about Operating Systems, High LevelLanguages, and how we access data.

• What’s next?

Now we are going right inside thecomputer to look at how the CPU and

memory works

Page 23: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 23/96

 The two most important parts of the inside of the computer arethe CPU and memory.

 The CPU (Central Processing Unit) is the “brain” of the computerwhere the computer works things out.

 The memory is where the computer “remembers” things for theCPU.

Page 24: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 24/96

 The Computer’s Memory

Computers use main memory and backing storage to store data.

Main memory is the fast memory inside a computer

that stores data the CPU is currently using

Backing store is the bigger but slower memory thatstores files and programs for the computer

Backing store comes in two types – magnetic andoptical.

Magnetic – Hard Disk and Floppy disk

Optical – CDROM and DVD

Page 25: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 25/96

Main memory

• Inside the computer there is main memory 

• Main memory is made up of memory chips

•  There are two kinds of main memory:

RAM – Random Access Memory

ROM – Read Only Memory

Page 26: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 26/96

Random Access Memory

• RAM is where the computer stores data thatis it currently using. This includes:

– Data from the keyboard as you type

– Data from open files and programs you are

using

• When you turn off your computer, all the datain RAM will be lost.

•  This is why you must always save files tobacking store before turning off a computer!

Page 27: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 27/96

Page 28: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 28/96

Read Only Memory

• ROM is READ ONLY – you can’t change it

• It is written in the factory when the computer is made

•  The computer can read the data in the ROM straightaway when the computer is switched on

–  This is why parts of the OS are sometimes stored onROM

• It isn’t wiped when the computer is switched off 

• A good way to remember the differencebetween RAM and ROM is to think that RAM is

like a notebook and ROM is like a textbook.• With RAM you write in what you need toremember

• With ROM it is already there and you don’tchange it!

Page 29: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 29/96

How to measure memory

• We said before that everything in a computer iseither a 1 or a 0

•  This is because computers use binary numbers

•  The size of memory is usually given in megabytesor gigabytes, but what does that mean?

Bit Binary digit: a 1 or 0

Byte 8 bits, e.g. 01101100

Kilobyte 1024 bytes

Megabytes 1024 KilobytesGigabyte 1024 Megabytes

Terabyte 1024 Gigabytes

Page 30: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 30/96

Memory size

Bit Binary digit: a 1 or 0

Byte 8 bits, e.g. 01101100

Kilobyte 1024 bytes

Megabytes 1024 Kilobytes

Gigabyte 1024 Megabytes

Terabyte 1024 Gigabytes

So an iPod with 60GB of storage spacehas:

60 x 1024 x 1024 x 1024 x 8

= 515,396,075,520 bits!

(over 515 billion bits…)

Page 31: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 31/96

The Processor

 The processor is the brains of the computerA processor takes data in, processes it and then

outputs the data to screen or printer.

Input Process Output

keyboard

mouse

calculationPrint out

Display onscreen

Page 32: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 32/96

Remember:

Input

Process

OutputSome real world examples of IPO…..

Page 33: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 33/96

Check your

understanding…• Give a real life example of IPO

• Give a computer example of IPO

• Explain why you can not store datain ROM

• What happens to RAM when the

computer is switched off? Whyshould this be ok?

Page 34: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 34/96

B

I

N

A

R

Y

Page 35: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 35/96

Binary

• We count in “decimal”

• We have 10 fingers, so it makes sense

that we group by 10s I.e. 1, 10, 100,1000, 10 000 etc

• Computers count in binary

• They use different columns and groupby twos I.e. 1, 2, 4, 8, 16, 32, 64, 128

Page 36: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 36/96

Numbers

We count to 10:

1,2,3,4,5,6,7,8,9,10

A computer would do this in binary:

1,10,11,100,101,110,111,1000,1001,1010!

Binary numbers have a power of 2, and

decimal numbers (that we count with)have a power of 10. Let’s go back intime……

Page 37: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 37/96

1000 100 10 1

128 64 32 16 8 4 2 1

6 5

1 1

1 1 5

1 1 1 1 1

0

0

0 0 0 0 0

0 0

For example:

Page 38: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 38/96

Binary Revision Questions

• What is binary for:

48, 20, 128, 7 ?• What is the decimal for:

00001000, 00001000,

00011000, 00000101 ?

Page 39: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 39/96

Page 40: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 40/96

Binary recap

• 65

• 100

• 255

• 129

128 64 32 16 8 4 2 1

01000001

01100100

11111111

10000001

Page 41: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 41/96

Storing Text and Graphics

• If computers can only work withbinary numbers, how do they store

words and pictures etc?

Page 42: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 42/96

Storing Text

• Since computers only use binary, they

have a binary code for each character• This code is called ASCII– American Standard Code for Information

Interchange

Binary Decimal Character

1000001 65 A

1000010 66 B

1000011 67 C

1000100 68 D

1000101 69 E1000110 70 F

Let’s try some ASCII conversion….

Page 43: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 43/96

ASCII Table

http://www.ascii.cl/htmlcodes.htm

Page 44: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 44/96

ASCII TABLE

65 A

66 B

67 C

68 D

69 E70 F

71 G

72 H

73 I

74 J75 K 

76 L

77 M

78 N

79 O

80 P

81 Q

82 R

83 S

84 T

85 U

86 V

87 W

88 X

89 Y 

90 Z

Page 45: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 45/96

The size of a text file

Hello

 The eagle has landed!

How many bytes would these files take up?

• Text is stored in the computer using ASCII codes

• Each character’s ASCII code is8-bits, i.e. 1 byte in size

• So, we can work out the storagerequirements of text files 

5

21

Page 46: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 46/96

Page 47: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 47/96

Storing Graphics

• In black and white graphics, thegrid of pixels can be represented

by binary numbers• 1 stands for a black square, 0

stands for a clear square.

• Each pixel takes up 1-bit to store.

1 0 0 1 1 0 0 1Th id i 8 8 i l

Page 48: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 48/96

1 0 0 1 1 0 0 1

0 1 0 1 1 0 1 0

0 0 1 1 1 1 0 0

0 0 0 1 1 0 0 0

1 0 0 1 1 0 0 0

1 1 1 1 1 0 0 0

0 0 0 0 1 1 1 0

0 0 0 0 0 0 1 0

How many bits do

you think it will taketo store this graphic?

 The grid is 8 x 8 pixels,so it will take 64 bits tostore.

64 bits is 8 bytes.

Page 49: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 49/96

Colour

Graphics• To store colour graphics, we need to

assign each colour a different numbere.g. red = 1, blue = 2 etc.

• These colour codes are stored in binary

• The larger the binary number, the more

colours we can have. How many do weneed?

• 32-bit graphics are normal (4.3 billiondifferent colours)

Page 50: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 50/96

Systems task 9

• 10 minutes on Systems Task 9,page 25

• If finished, go onto KnowledgeCheck 5

Page 51: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 51/96

Summary

• Computers store text and graphics in binary.

•  They use a code called ASCII (American Standard Codefor Information Interchange)

• Each character has a code in ASCII• Black and white graphics are stored by using 1 bit for

each pixel (1 for black, 0 for white).

• We can work out the size of these graphics bymultiplying the width of the graphic by the height.

• Colour graphics use more bits for each pixel dependingon how many colours are needed.

Page 52: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 52/96

Hardware

• We’ve covered how the CPU works,and what the Operating Systemsoftware does

• Now let us look at hardware for thecomputer

Page 53: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 53/96

Microprocessor

 The chip is made of layers of silicon crystalwavers on which very small electronic

components are installed.

Page 54: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 54/96

Backing Storage

Backing storage memory is used to store files when thecomputer is switched off, and are usually removable.

 There are two types of backing storage, Optical andMagnetic. We’ll look at magnetic first.

Page 55: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 55/96

Page 56: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 56/96

 Tape Drive

 Tape drives take large plastic tapes which store data in binaryusing magnetic ‘spots’ to encode the data

 They have a large capacity, and fast data transfer rates

 Tapes wear over time so need to be stored in suitableenvironment and are suited to medium and short termstorage

DAT tapes can hold up to 200 Gigabytes so are used forbackup

Page 57: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 57/96

Page 58: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 58/96

Floppy Disks

• Floppy Disks are made from circular plastic plates coated iniron oxide (which is a magnetic chemical).

• Data is stored on the surface as patterns of magnetic spots.

• Floppies are small and compact

• They store up to 1.44Mb of data (about 1/3 of an MP3 file)

• They can be damaged easily by dust, dampness,electro/magnetic pulses

Hard Drive

Page 59: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 59/96

Hard Drive

Hard Drive

Page 60: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 60/96

Hard Drive

Hard drives store data by writing

magnetic patterns onto metaldisks.

 The surfaces are divided up intosectors and tracks which allows

each part to be accessed directly.

• The disk is in a sealed box to prevent dust damage.• The read/write head is just above the surface of thedisk

• The disk spins between 7,000 and 10,000 rpm• They hold gigabytes of data (most recently up to750GB in size)

Page 61: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 61/96

Optical Backing Storage

Optical backing storage uses laseroptics to read and write data.

Data is stored in binary by usinglasers to burn microscopic marks onthe disk surface.

Data is read by reflecting light off thesurface to read the microscopicmarks.

Page 62: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 62/96

Page 63: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 63/96

Page 64: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 64/96

DVD-ROMDVD-ROM

• Works in the same way as CD-ROM• Stores more data because it uses a narrower laser

beam to read and write to disk

• Ordinary DVDs hold 4.7 Gigabytes

• Double-sided, multilayered DVDs store up to 17GB• Enough space for large files such as movies

• Works in the same way as CD-ROM• Stores more data because it uses a narrower laser

beam to read and write to disk

• Ordinary DVDs hold 4.7 Gigabytes

• Double-sided, multilayered DVDs store up to 17GB• Enough space for large files such as movies

Page 65: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 65/96

CD-RCD-R

• Stands for Compact Disk Recordable

• Uses a layer of dye which laser changes tostore data

• CD-Rs are WORM - Write Once Read Many

– Once files are written on, they can’t be deleted orchanged

– CD-Rs are read-only after they are written

• Stands for Compact Disk Recordable

• Uses a layer of dye which laser changes tostore data

• CD-Rs are WORM - Write Once Read Many

– Once files are written on, they can’t be deleted orchanged

– CD-Rs are read-only after they are written

Page 66: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 66/96

CD-RWCD-RW

• Stands for Compact Disk Re-writable

• Unlike CD-R, these can be rewritten

•  This is because they use the laser to change the

reflective properties of microscopic marks

• CD-ROMS, CD-Rs and CD-RWs are used for:– backing up large files

– Storing large multimedia presentations

– Storing large programs, like games

• CD-ROMS, CD-Rs and CD-RWs are slower than hard disks

• But they are removable!

• Stands for Compact Disk Re-writable

• Unlike CD-R, these can be rewritten

•  This is because they use the laser to change the

reflective properties of microscopic marks

• CD-ROMS, CD-Rs and CD-RWs are used for:– backing up large files

– Storing large multimedia presentations

– Storing large programs, like games

• CD-ROMS, CD-Rs and CD-RWs are slower than hard disks

• But they are removable!

Page 67: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 67/96

DVD-R and DVD-

RW

DVD-R and DVD-

RW

• Works in the same way as CD-R and CD-RW• Stores more data because of narrower laser

• Can store up to 4.7GB

• Works in the same way as CD-R and CD-RW• Stores more data because of narrower laser

• Can store up to 4.7GB

Page 68: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 68/96

Page 69: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 69/96

USB Flashdrive

USB Flashdrive

• USB Flash drives are rewritable memory chips• Store data just like a disk

• Used as backup and plugs into USB ports on acomputer

• Very small and portable• Sizes from 64MB to 2 Gigabytes

• USB Flash drives are rewritable memory chips• Store data just like a disk

• Used as backup and plugs into USB ports on acomputer

• Very small and portable• Sizes from 64MB to 2 Gigabytes

Page 70: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 70/96

Input Devices

Input devices are pieces of hardwarethat let you control a computer bysending data to the computer fromyour device.

Page 71: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 71/96

MouseMouse

A mouse lets youcontrol the pointeron screen, and clickto select icons.

Mice usually have 2buttons andsometimes a scroll

wheel.

A mouse lets youcontrol the pointeron screen, and clickto select icons.

Mice usually have 2buttons andsometimes a scroll

wheel.

Page 72: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 72/96

TrackballTrackball

A trackball is similarto a mouse exceptthe ball is on top.

 The trackball doesnot move around the

desk like a mouse.

 They are usefulwhen a user does

not have desk spaceto move a mouse,and for people whofind it hard to usetheir arms to moveob ects around.

A trackball is similarto a mouse exceptthe ball is on top.

 The trackball doesnot move around the

desk like a mouse.

 They are usefulwhen a user does

not have desk spaceto move a mouse,and for people whofind it hard to usetheir arms to moveob ects around.

Page 73: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 73/96

Page 74: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 74/96

Graphics

Tablet

A flat plastic panel with electronic sensors belowthe surface detect the movements of a pointingdevice.

Very accurate – used by graphic artists / designers /Computer Aided Design (CAD)

Touch Sensitive Screen

Page 75: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 75/96

Touch Sensitive Screen

Simple to operate

Useful for public informationsystems

 Tiring to use after a while

Not precise

Keyboard

Page 76: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 76/96

Keyboard

Input text and numbers

Function keys

QUERTY layout

Very common, nearly every computer

has one

Page 77: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 77/96

Scanner

Input drawing, photographs frompaper.

Light beam passes over page and asensor detects the reflection

Optical Character Recognition (OCR)

software can recognise writing

Di it l C

Page 78: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 78/96

Digital Cameras

Di it l C

Page 79: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 79/96

Digital Cameras

Captures light coming through the lensand stores a digital image

Allows instant review of picture takenDelete photos you don’t like

 Takes a memory card – can be various

capacities.

Ch i

Page 80: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 80/96

Choosing a camera

Look at the accuracy (resolution) –measured in Megapixels. 5 Mpx isenough

Does it have a zoom lens? Digital zoomis worthless because it produces poorpictures

What capacity is the memory card?

Page 81: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 81/96

Digital Video cameras

Same principle as still digitalcameras

Need a large storage capacity –

video takes up a lot of space (15frames per second)

Some have a small LCD screen

to view your videoFeatures: zoom, focus, lighting,infrared recording, onboardediting

Page 82: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 82/96

Laser Printer

Page 83: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 83/96

Laser Printer

Uses a laser beam to copy image of a page onto light-sensitive drum

Ink (toner) attracted to the drum

then transferred to paper

Laser printers are fast

The output is high quality

They are expensive to buy butrelatively cheap to maintain.

Sprays ink onto the paper

Page 85: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 85/96

Monitor

Page 86: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 86/96

Monitor

Screen used to display

computer output

Different monitors havedifferent resolutions

 The higher theresolution, the moredetailed the picture will

beHigh resolution neededfor CAD and art work

Page 87: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 87/96

LCD / TFT Displays

LCD = Liquid Crystal Display

 These screens have the followingadvantages:

Flat, light, needing little power, can berun from a laptop battery

 The one disadvantage is that sometimesthey are not bright enough and cancause eye strain

Page 88: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 88/96

LCD / TFT Displays

TFT = Thin Film Transistor

Same advantages as LCD.Uses a tiny transistor to form each pixel

Can update the image very quickly,

allowing it to handle complex graphicsand animation which LCD displayscannot

Computer

Page 89: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 89/96

ComputerSpeakers

Produce sound from the computer

Allow you to do multimedia presentations,

video-conferencing, games, music etcComputer speaker systems vary in qualityand number of speakers depending onoutput wattage (RMS) or surround sound

Page 90: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 90/96

Page 91: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 91/96

Desktop VS Laptop

• Desktop computers stay in the sameplace. Laptop computers are portable

• Because of this, the components used

need to be light and consume lesspower (run off battery)

• This means that a laptop with the samespecification (CPU speed, RAM) will

cost more than a same spec desktop.

Page 92: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 92/96

Page 93: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 93/96

Palmtop Computer

• Is about the size of your hand

• Small keyboard or a stylus withhandwriting recognition

• Stores data on a memory card• Useful for ultra-portable computing

on the move

• Store contacts, calendar, editing

documents, email etc

Page 94: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 94/96

Mainframe computer

• Large and powerful

• Lots of processing power

(multiple CPUs) and RAM• Many users connectedusing terminals

• Used by banks and other

large businesses toprocess and store data

Page 95: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 95/96

Multimedia Systems

• Multimedia systems integrate sound,animation, video and graphics

• Most modern computers have these

capabilities

• Interactive learning,

information systems,multimedia web pages,games

Page 96: MELJUN Computer System Foundation

8/14/2019 MELJUN Computer System Foundation

http://slidepdf.com/reader/full/meljun-computer-system-foundation 96/96

Multimedia systems

• A fast CPU and lots of RAM and storage

• Quality TFT display

• Scanner

• Digital camera (video)

• Surround soundspeakers

• Data projector

A good system for viewing and creatingmultimedia might include: