Computer Systems Chapter 1 Pages 2 - 16. Hardware-physical pieces Key hardware components in a computer system: The physical parts. – Central processing.

Slides:



Advertisements
Similar presentations
Introduction to Computers Chapter 2 §Computers are common in every facet of human activity. §They overcome the shortcomings of conventional radiography.
Advertisements

Vocabulary Electronic pulses Transistors Decimal numbers
1 Chapter 2 The Digital World. 2 Digital Data Representation.
Computer Hardware.
 The central processing unit (CPU) interprets and executes instructions.  The “brains” of the computer.  The speed of the processor is how fast it.
Chapter 0 Introduction to Computing
Binary Expression Numbers & Text CS 105 Binary Representation At the fundamental hardware level, a modern computer can only distinguish between two values,
COMP 14 Introduction to Programming
Unit 3—Part A Computer Memory
CS 0008 Day 2 1. Today Hardware and Software How computers store data How a program works Operators, types, input Print function Running the debugger.
ICAICT101A Operate a Personal Computer. A computer is an electronic device that allows you to process and store data (information)… 2.
Communications Technology 2104 Mercedes Lahey. Bit 1. bit=From a shortening of the words “binary digit” 2. the basic unit of information for computers.
Aug CMSC 104, LECT-021 Machine Architecture and Number Systems Some material in this presentation is borrowed form Adrian Ilie From The UNIVERSITY.
HARDWARE Lesson 2. Components of a computer: 1)A Processor (or CPU) The brain of the computer 2)Memory To remember the programs and data that it uses.
1 Machine Architecture and Number Systems Topics Major Computer Components Bits, Bytes, and Words The Decimal Number System The Binary Number System Converting.
Chapter Two Hardware Basics: Inside the Box. ©1999 Addison Wesley Longman2.2 Chapter Outline What Computers Do A Bit About Bits The Computer’s Core: CPU.
MAC OS – Unit A Page: 10-11, Investigating Data Processing Understanding Memory.
Introduction to Computers
Copyright © 2003 by Prentice Hall Module 5 Central Processing Unit 1. Binary representation of data 2. The components of the CPU 3. CPU and Instruction.
Data Representation A series of eight bits is called a byte. A byte can be used to represent a number or a character. As you’ll see in the following table,
Slide 1 Wednesday, October 07, 2015 Low Level Machine.
What do computers know?  All they really know is on or off.  Kind of like a light switch  Computers aren’t nearly as smart as you are!
Machine Architecture CMSC 104, Section 4 Richard Chang 1.
AP: Discuss with a shoulder partner these questions. EQ Question: 1. What does the computer understand? 2. How is information converted to machine language?
COMPUTER MAINTENANCE REPAIR & TROUBLESHOOTING Powered by DeSiaMore1.
Inside your computer. Hardware Review Motherboard Processor / CPU Bus Bios chip Memory Hard drive Video Card Sound Card Monitor/printer Ports.
Computer Guts and Operating Systems CSCI 101 Week Two.
Computer Confluence 7/e © 2006 Prentice-Hall, Inc.
1 3 Computing System Fundamentals 3.2 Computer Architecture.
1 Hardware and Software b Hardware the physical, tangible parts of a computerthe physical, tangible parts of a computer keyboard, monitor, wires, chips,
Unit 2—Part A Computer Memory Computer Technology (S1 Obj 2-3)
Bits and Bytes IGCSE. A binary number is either a 0 or a 1 and is known as a 'bit' or b inary dig it. However, the CPU cannot deal with just one bit at.
© 2011 Pearson Education, publishing as Addison-Wesley Chapter 1: Computer Systems Presentation slides for Java Software Solutions for AP* Computer Science.
Computer Science Binary. Binary Code Remember the power supply that is inside your computer and how it sends electricity to all of the components? That.
How We Measure Memory. Learning Goal Today we are going to learn how the computer stores information.
Components of a Computer System
General Computer Stuff Hardware: physical parts of a computer: CPU, drives, etc. Software: Programs and Data A computer needs both to be useful.
© 2006 Pearson Education Chapter 1: Computer Systems.
Computers - The Journey Inside continues…
Computer Systems. Bits Computers represent information as patterns of bits A bit (binary digit) is either 0 or 1 –binary  “two states” true and false,
Basic Computer Organization Rashedul Hasan.. Five basic operation No matter what shape, size, cost and speed of computer we are talking about, all computer.
2.1.4 Data Representation Units.
Know what a computer is used for Understand the difference between hardware and software Be able to describe the way that data is stored in a computer.
Memory The term memory is referred to computer’s main memory, or RAM (Random Access Memory). RAM is the location where data and programs are stored (temporarily),
Binary Decimal Hexadecimal
COMPUTER SYSTEM A computer system is define as combination of components designed to process data and store files. A computer system consists of four.
Binary Numbers. Base 10 and Base 2  We normally work with numbers in base 10.  In base 10 we use the digits 0, 1, 2, 3, 4, 5, 6, 7, 8 and 9.  Everything.
Once you have been through these notes you will need to complete the workbook.
Programming with Java. Chapter 1 Focuses on: –components of a computer –how those components interact –how computers store and manipulate information.
Introduction to Programming. Key terms  CPU  I/O Devices  Main memory  Secondary memory  Operating system  User interface  Application  GUI 
Basic Computer Components Unit 2. What is a computer?  A computer is an electronic device that accepts raw data and processes it into information that.
Computer Graphics HARDWARE. Computers  Computers are automatic, electronic machines that –accept data & instructions from a user (INPUT) –store the data.
Computer basics.
An Overview of the Computer System
Hardware specifications
Computer Memory Digital Literacy.
Computer Hardware and Software
Memory Parts of a computer
Unit 2 Computer Memory Computer Technology (S1 Obj 2-3)
הכרת המחשב האישי PC - Personal Computer
Unit 3—Part A Computer Memory
PRIMARY STORAGE.
An Overview of the Computer System
How do computers work? Storage.
Computer Electronic device Accepts data - input
Unit 3—Part A Computer Memory
Binary System.
Information Technology Department
AS Level ICT Selection and use of storage requirements, media, and devices: storage and storage capacity Unit 1 Topic a - Selection and use of storage.
Basic Computer Organization
Presentation transcript:

Computer Systems Chapter 1 Pages

Hardware-physical pieces Key hardware components in a computer system: The physical parts. – Central processing unit – executes – Input/output devices – Main memory-holds software while being processed by CPU – Secondary memory devices-Stores software until deleted from system

Software Two types: System software and applications. Software is the actually programs we will run on the computer. System programs – Operating System – Provides user interface (GUI) – Manages computer resources Application – programs designed for purpose: education, financial, medical games.

Digital Information A computer stores information digitally as binary numbers. – numbers – text – graphics and images – video – audio – program instructions In some way, all information is digitized - broken down into pieces and represented as numbers

Binary Numbers Binary number system has only two digits – 0 and 1. A single binary digit (0 or 1) is called a bit A single bit can represent two possible states, like a light bulb that is either on (1) or off (0) These combinations of bits make up letters, symbols, numbers. Binary is Base 2 number system so t here are 2 N permutations of N bits

6 Bit Permutations Therefore, N bits are needed to represent 2 N unique items 2 1 = 2 items 2 2 = 4 items 2 3 = 8 items 2 4 = 16 items 2 5 = 32 items 1 bit ? 2 bits ? 3 bits ? 4 bits ? 5 bits ? 6 bits ? 7 bits ? 8 bits ? How many items can be represented by 2 6 = 64 items 2 7 = 128 items 2 8 = 256 items

7 Bit Permutations 1 bit bits bits bits Each additional bit doubles the number of possible permutations All the different combinations possible of 0s or 1s. Question: 3 bits can represent how much data ?

Convert from decimal to binary To convert from decimal to binary use the greedy algorithm. Start with the first power of two less than or equal to the decimal number and turn that bit to 1. Then subtract the power of two from the decimal number and continue until done 256 (2 8 ) 1 ( = 60) 128 (2 7 ) 0 64 (2 6 ) 0 32 (2 5 ) 1 (60-32 = 28) 16 (2 4 ) 1 (28-16 = 12) 8 (2 3 ) 1 (12-8 = 4) 4 (2 2 ) 1 (4-4 = 0) 2 (2 1 ) 0 1 (2 0 ) is Bits in computer memory are organized into bytes. Each byte has 8 bits. The first 8 values in powers of 2 are 1, 2, 4, 8, 16, 32, 64, 128. So you can store the values 0 to 255 in 1 byte (8 bits). Base 2 number system chart

Convert from binary to decimal The decimal value of a binary number can be calculated by multiplying the digit by the value of each place and adding the results for each digit (1)(2 8 ) + (1) (2 5 ) + (1)(2 4 ) + (1)(2 3 ) + (1)(2 2 ) + (0)(2 1 ) + (0)(2 0 ) = 316

10 Storage Capacity Every memory device has a storage capacity, indicating the number of bytes it can hold Capacities are expressed in various units : KB2 10 = 1024 MB2 20 (over 1 million) GB2 30 (over 1 billion) TB2 40 (over 1 trillion) UnitSymbolNumber of Bytes kilobyte megabyte gigabyte terabyte