Chapter 1 Introduction.

Slides:



Advertisements
Similar presentations
Microcomputer Circuits Prof Jess UEAB 2007 Designing a Microprocessor Chapter 1.
Advertisements

EEE226 MICROPROCESSORBY DR. ZAINI ABDUL HALIM School of Electrical & Electronic Engineering USM.
INTRODUCTION OF COMPUTER
Chapter 5: Computer Systems Organization Invitation to Computer Science, Java Version, Third Edition.
Chapter 01 Introduction Chapter 0 Introduction. Chapter 02 History of Computing - Early Computers Abacus (ancient orient, still in use) Slide rule (17C,
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. COMPSCI 125 Introduction to Computer Science I.
1 8/28/06CS150 Introduction to Computer Science 1 Professor: Chadd Williams
1 The development of modern computer systems Early electronic computers Mainframes Time sharing Microcomputers Networked computing.
CIS 260 Computer Programming I in C Prof. Timothy Arndt.
Studies in Big Data 4 Weng-Long Chang Athanasios V. Vasilakos MolecularComputing Towards a Novel Computing Architecture for Complex Problem Solving.
C.S. Choy95 COMPUTER ORGANIZATION Logic Design Skill to design digital components JAVA Language Skill to program a computer Computer Organization Skill.
BACS 287 Basics of Programming BACS 287.
1.1 1 Introduction Foundations of Computer Science  Cengage Learning.
Invitation to Computer Science 5th Edition
CS 1410 Intro to Computer Tecnology Computers and History1.
Chapter I: Introduction to Computer Science. Computer: is a machine that accepts input data, processes the data and creates output data. This is a specific-purpose.
Chapter 5: Computer Systems Organization Invitation to Computer Science, Java Version, Third Edition.
©Brooks/Cole, 2003 Foundations of Computer Science from Data Manipulation to Theory of Computation Behrouz A. Forouzan, Brooks/Cole — Thomson Learning,
CPS120: Introduction to Computer Science Introduction to Computers.
Visual C++ Programming: Concepts and Projects
Chapter 1 Introduction. Objectives To explain the definition of computer architecture To discuss the history of computers To describe the von-neumann.
1.1 1 Introduction Foundations of Computer Science  Cengage Learning.
Chapter 1 Introduction. Understand the concept of a black box, a data processor, and a programmable data processor. Define the von Neumann model and name.
CPIT 201 Introduction to Computing
Chapter 1 Introduction.
Chapter 5 Computing Components. 5-2 Chapter Goals List the components and their function in a von Neumann machine Describe the fetch-decode-execute cycle.
General Concepts of Computer Organization Overview of Microcomputer.
Computer Hardware Basic Computer Concepts Components of Data Processing  Data processing is a technique of collecting, manipulating and distributing.
Computer Architecture And Organization UNIT-II General System Architecture.
Chap 1 Introduction. What is OS? OS is a program that interfaces users and computer hardware. Purpose: Provides an environment for users to execute programs.
J. Stover, CSD-HS.  A computer is an electronic device that is programmed to accept data (input), process it into useful information (output), and store.
Indira Gandhi National Open University presents. A Video Lecture Course: Computer Platforms.
1 COMS 161 Introduction to Computing Title: Computing Basics Date: September 15, 2004 Lecture Number: 10.
Introduction to Microprocessors
Computer Organization & Architecture
Simple ALU How to perform this C language integer operation in the computer C=A+B; ? The arithmetic/logic unit (ALU) of a processor performs integer arithmetic.
1 Introduction Foundations of Computer Science  Cengage Learning.
CS 101 INTRODUCTION TO COMPUTING * image from The Central Eglinton Community Centre website.
Computer Architecture
©Brooks/Cole, 2003 Chapter 1 Introduction. ©Brooks/Cole, 2003 Figure 1-1 Data processor model This model represents a specific-purpose computer not a.
Computers Are Your Future Eleventh Edition Chapter 2: Inside the System Unit Copyright © 2011 Pearson Education, Inc. Publishing as Prentice Hall1.
مقدمة في البرمجة CS 201 Huda aljaloud. Chapter1 Introduction.
CHAPTER 1 INTRODUCTION.  Data Processor: ◦ The basic definition of a computer is as a data processor. ◦ A black box that: 1.Accepts input data, 2.Processes.
CHAPTER 1 OVERVIEW OF COMPUTER AND PROGRAMMING 1.1 Electronic Computer Then and Now 1.2 Computer Hardware 1.3 Computer Software 1.4 The Software Development.
Lecture 4 Number Systems Lecturer: Sumaira Hussain.
Chapter I: Introduction to Computer Science. Computer: is a machine that accepts input data, processes the data and creates output data. This is a specific-purpose.
Chapter 1 Introduction.
Java Programming: From the Ground Up
Computer Organization
Computer Organization and Architecture
COMPUTER ORGANIZATION & ASSEMBLY LANGUAGE
Concepts of CS Lecture 1.
Chapter 7.2 Computer Architecture
Chapter 2 – Computer hardware
Components of Computer
Chapter 1 Introduction.
Course Name: Computer Application Topic: Central Processing Unit (CPU)
Introduction to Microprocessors
CS 21a: Intro to Computing I
Computer Science I CSC 135.
Introduction to IT Zeeshan A. Bhatti.
Chapter 5: Computer Systems Organization
Computer Organization
INTRODUCTION TO COMPUTERS
Lecture 4 Number Systems. von Neumann Model Every computer today is based on the von Neumann Model. It is based on 3 ideas: 1.Four subsystems 2.Stored.
Computer Evolution and Performance
CS 330 Programming Languages
Computer components is a programmable machine that receives input, stores and manipulates data, and provides output in a useful format. Computer The computer.
Chapter 0 Introduction Introduction Chapter 0.
Chapter 4 The Von Neumann Model
Presentation transcript:

Chapter 1 Introduction

OBJECTIVES After reading this chapter, the reader should be able to: Understand the concept of a black box, a data processor, and a programmable data processor. Define the von Neumann model and name its components: memory, arithmetic/logic unit, control unit, and input/output. Understand the stored program concept. Understand the sequential execution of statements in a program. Name the components of a computer: hardware, software, and data.

1.1 THE COMPUTER AS A BLOCK BOX

Figure 1-1 Data processor model Data processor model

Programmable Data processor model Figure 1-2 Programmable data processor model Computers – general-purpose machines Programmable Data processor model

Program A program is a set of instructions that tells the computer what to do with data. written in a computer language.

Same program, different data Figure 1-3 Same program, different data Same program, different data

Same data, different programs Figure 1-4 Same data, different programs

1.2 von NEUMANN MODEL

Memory – the storage area of programs and data. Four subsystems: Memory – the storage area of programs and data. ALU – arithmetic/logic operations take place Control Unit – control Memory, ALU, and I/O I/O – accept input data/send output data Figure 1-5 von Neumann model

Input/Output Subsystem The definition is very broad; it includes the secondary storage devices. Disk – stores data and programs for processing

Stored Program Concept The von Neumann model states that the program must be stored in memory. The memory of modern computers hosts both a program its corresponding data

Sequential Execution of Instructions A program is made of a finite number of instructions. The control unit fetches one instruction from memory interpret it execute it The instructions are executed one after another.

1.3 COMPUTER HARDWARE

ALU Registers Control unit

1.4 DATA

Storing Data Store data in the form of an electrical signal, specially its presence or absence. This implies that a computer can store data in one of two states. Binary number system

1.5 COMPUTER SOFTWARE

Requirements of von Neumann model The programs must be stored in memory. (Fig. 1.6) The programs must be a sequence of instructions. (Fig. 1.7)

Program and data in memory Figure 1-6 Program and data in memory Fig. 1.6

Program made of instructions Figure 1-7 Program made of instructions Fig. 1.7 Program made of instructions

Algorithm A programmer should first solve the problem in a step-by-step manner and then try to find the appropriate sequence of instructions that solves the problem. The step-by-step solution is called an algorithm

Operating Systems An operating system originally worked as a manager to facilitate access of the computer components for a program.

1.6 HISTORY

Before 1950 Mechanical machines (before 1930) Early electronic computers (1930-1950) ENIAC (Electronic Numerical Integrator and Calculator) first general-purpose, totally electronic computer University of Pennsylvania, 1946

1950 The preceding computers used memory only for storing data. EDVAC the first computer based on von Neumann’s idea, University of Pennsylvania,1950

Computer generations (1950-present) 1st generation (1950-1959) vacuum tubes 2nd generation (1959-1965) transistors, High-level languages(FORTRAN, COBOL) 3rd generation (1965-1975) IC(Integrated Circuit), Minicomputer, software industry was born 4th generation (1975-1985) VLSI, microcomputer 5th generation (1985-) laptop and palmtop computer

Microcomputer Microcomputers are designed to be used by individuals, whether in the form of PCs, workstations or notebook computers. A microcomputer contains a CPU on a microchip (the microprocessor), a memory system (typically ROM and RAM), a bus system and I/O ports, typically housed in a motherboard.