An Introduction to The computer.

Slides:



Advertisements
Similar presentations
Basic Computer Vocabulary
Advertisements

An Overview of the Computer System
McGraw-Hill/Irwin ©2008 The McGraw-Hill Companies, All Rights Reserved Plug-in B3 HARDWARE & SOFTWARE.
An Overview of the Computer System
Computer Components.
Introduction to Computer Systems
Introduction to Computers
1 Introduction to Computers Prof. Sokol Computer and Information Science Brooklyn College.
Computer Systems CS208. Major Components of a Computer System Processor (CPU) Runs program instructions Main Memory Storage for running programs and current.
COMPUTER SYSTEMS COMPONENTS 6 th grade. BCSI-1: Students will identify computer system components.  a) Identify and define the key functional components.
Copyright © 2006 by The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill Technology Education Introduction to Computer Administration Introduction.
How Computers Work. A computer is a machine f or the storage and processing of information. Computers consist of hardware (what you can touch) and software.
Introduction to Computers Personal Computing 10. What is a computer? Electronic device Performs instructions in a program Performs four functions –Accepts.
An Introduction To Computer Hardware
Computer Organization Hardware and Software. Computing Systems Computers have two kinds of components: Hardware, consisting of its physical devices (CPU,
Learning Targets Identify the external parts of the computer Identify examples of input devices Identify examples of output devices Define basic computer.
The Computer Systems By : Prabir Nandi Computer Instructor KV Lumding.
What is a Computer ? Computers are Electronic Machines that process (performs calculation and manipulation) Data under the control of Set of Instructions.
Introduction to Computers
Introduction to Computers
1 Introduction to Computers Prof. Sokol Computer and Information Science Brooklyn College.
1 Introduction to Computers Lect 1 Won’t tell you much you don’t know. (Misleading– the course gets more conceptual as we create webpages.) Will go into.
Introduction to the Computer System. What is a computer ? A computer is an electronic device that can accept data and instruction, process them or store.
Computer Parts. Two Basic Parts Hardware & Software.
Intro to Computers Computer Apps 1.
Introduction to Computer Architecture. What is binary? We use the decimal (base 10) number system Binary is the base 2 number system Ten different numbers.
IT Groundwork ICS3UC - Unit 1 Hardware. Overview of Computer System.
What is a computer? Computer is a device for processing information.
School of Computer Science & Information Technology G6DICP Introduction to Computer Programming Milena Radenkovic.
Computer Architecture
Parts of the Computer System
Components of a Computer System
Computer Hardware A computer is made of internal components Central Processor Unit Internal External and external components.
Looking Inside the Computer System
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,
1 Introduction to Computers Prof. Sokol Computer and Information Science Brooklyn College.
COMPUTER SYSTEM A computer system is define as combination of components designed to process data and store files. A computer system consists of four.
Computers Inside & Out. How have computers affected your life? How has technology affected your life?
Introduction To Computer Programming – 1A Computer Parts, Words, and Definition Herriman High School.
Introduction to Programming. Key terms  CPU  I/O Devices  Main memory  Secondary memory  Operating system  User interface  Application  GUI 
INTRODUCTION TO COMPUTERS. A computer system is an electronic device used to input data, process data, store data for later use and produce output in.
Five Components of a Computer Input Device – keyboard, scanner, PDA/stylus, digital camera, mouse, MP3 player, fax machine, microphone Storage Device –
Chapter 1: Introduction to Computers and Programming
Computer Architecture and Number Systems
Computer Systems Nat 4/5 Computing Science Computer Structure:
Computer Information Systems
Computer Science II Chapter 1.
An Overview of the Computer System
Topics Introduction Hardware and Software How Computers Store Data
An Introduction to The computer.
Computer Hardware and Software
Principles of Information Technology
Computer Organization
The physical parts of the computer
Introduction to Computer Architecture
TexPREP Summer Camp Computer Science
Business Technology Applications
Introduction to Computers
Looking Inside the machine (Types of hardware, CPU, Memory)
An Overview of the Computer System
An Overview of the Computer System
Computer Electronic device Accepts data - input
Introduction to Computers
Introduction to Computer Architecture
Topics Introduction Hardware and Software How Computers Store Data
COMPUTER FUNDAMENTALS i
Computer components is a programmable machine that receives input, stores and manipulates data, and provides output in a useful format. Computer The computer.
ICS103 Programming in C 1: Overview of Computers And Programming
Computer components.
Presentation transcript:

An Introduction to The computer

Computer a machine that follows instructions to accomplish a task

HARDWARE SOFTWARE Any physical components of a computer Any instructions followed by the computer

Categories of hardware Processor (CPU) Memory (Primary Storage) "RAM" Secondary Storage Input & Output (Human/Computer Interaction) Communications (with other computers and devices)

Categories of hardware PROCESSOR (CPU) Controls all other hardware components Executes (follows) simple instructions Arithmetic: + - X ÷ (sometimes more: sin() cos()) Relational: < > = Logical: and or not Move (Copy) very small units of data/instructions Holds only a few small units of data/instructions

Categories of hardware MEMORY (Primary Storage) Short Term / Temporary storage of data and instructions currently in use. Organization: set of Locations, where each Location: stores one instruction or a small unit of data (Contents) has a numeric Address Data/instructions must be in memory for the CPU to use it Volatile: contents lost when power is lost

Categories of hardware SECONDARY STORAGE Long term storage of data and instructions Organization: similar to Memory (Locations) Non-Volatile: information “saved” without power Larger than Memory (more Locations) Slower access by CPU (must be copied to Memory) Ex: Hard Drive, Thumb Drive, DVD, CD, Tape

Categories of hardware INPUT & OUTPUT Allows the computer to interact with a human Input: allows the human to enter information into the computer (ex: mouse, keyboard, microphone, scanner, camera). Output: allows the computer to deliver information to a human (ex: monitor, speaker, printer)

Categories of hardware COMMUNICATIONS Allows the computer to send/receive data to/from other computers and devices. May be wired (NIC: Network Interface Card, modem) or wireless (Bluetooth, cellular)

Basic diagram of a computer

ALL data and instructions are stored in terms of two digits: 1 & 0 Digital information ALL data and instructions are stored in terms of two digits: 1 & 0 Why? For the engineers: an “on/off switch” is the simplest machine component. a machine that constantly transforms itself is most easily built from the simplest components.

Physical Representation Digital information Physical Representation Volatile hardware: electricity is On or Off Non-Volatile hardware: depends on the physical medium. Ex: Hard drive: magnetic (attract or repel) DVD: laser reflection (reflects or does not reflect)

Units of measure Processor Cycle: a single action of a CPU; single "clock tick" Fetch: copy an instruction from memory Execute: follow/carry out an instruction Hertz: cycles per second Kilohertz: 1,000 cycles per second Megahertz: 1,000 kilohertz

Units of measure Storage Bit – a single digit (1 or 0) Byte – 8 bits Kilobyte – 1,000 bytes (previous: 1,024 bytes) Megabyte – 1,000 kilobytes (prev: 1,024 KB) Gigabyte – 1,000 megabytes (prev: 1,024 MB)

Units of measure Storage Word – the size of a memory location unit of data used by most computer operations size varies by computer model (1,2,4,8,etc. bytes) Ex: in a 64-bit machine, a Word is 8 bytes.

categories of software Application Performs a particular task (Ex: mail, game, word processor, internet browser) Application Support Utilities used by multiple applications (Ex: MS .Net, Java Runtime Environment) Systems Operating System: Control of Hardware, User Interface & App Services (Ex: MacOS, MS-Windows, Linux)

Vocabulary Summary Term Definition Computer A machine that follows instructions to accomplish a task Hardware Any physical components of a computer. Software Any instructions followed by the computer. Processor Computer hardware category that controls all other hardware and follows (executes) the instructions. Memory Short term/temporary storage of data and instructions currently in use. Location An individual element of memory, it stores one instruction or one small piece of information. It has an Address and Contents. Volatile: Describes hardware where information is lost when electricity is lost. Secondary Storage Long term, non-volatile storage if information. It is larger but slower for the CPU to access information stored here as compared to Memory. Ex: hard drive, thumb drive, DVD. Input/Output Category of hardware that allows the computer to interact with a human. Ex: Keyboard, Mouse, Monitor, Speaker. Communications Category of hardware that allows the computer to share information with other computers and devices. Hertz A unit of measure of the processor, meaning 1 cycle per second.

Vocabulary Summary Term Definition Kilohertz 1,000 hertz Megahertz Bit A single binary digit (1 or 1) Byte 8 bits Kilobyte 1,024 bytes Megabyte 1,024 kilobytes Gigabyte 1,024 megabytes Word The size of a memory location expressed in bytes. The exact number varies by CPU model. Application Software that performs a particular task. (Ex: email, game, word processor) Application Support Software consisting of utilities shared by multiple applications (Ex: MS .Net, Java JRE). Operating System Software that controls the hardware, provides an interface for the user to command the computer to perform tasks, and provides services for applications.