What is computer hardware? Computer hardware are the physical components of the computer.

Slides:



Advertisements
Similar presentations
Basic Computer Vocabulary
Advertisements

Review of Computer Hardware, Operating Systems, and Media EDUC 286: Educational Technology II: Professional Tools Fall 2009.
 Computer hardware components are the physical pieces of the computer.  The major hardware components of a computer are: – The central processing.
Computer Bits and Parts Parts of the computer system.
 The central processing unit (CPU) interprets and executes instructions.  The “brains” of the computer.  The speed of the processor is how fast it.
Computer Components.
Computer Basics. What is a Computer? A computer is a machine that can take inputs from the user, process that information, store that information as needed.
Introduction to Computers and Programming. Some definitions Algorithm: –A procedure for solving a problem –A sequence of discrete steps that defines such.
Introduction to Computers
1 Introduction to Computers Prof. Sokol Computer and Information Science Brooklyn College.
Introduction to Computer Terminology
Introduction to Computers Essential Understanding of Computers and Computer Operations.
ICAICT101A Operate a Personal Computer. A computer is an electronic device that allows you to process and store data (information)… 2.
Chapter 1 Introduction to Computers and C++ Programming.
Section 2.1 Identify hardware Describe processing components Compare and contrast input and output devices Compare and contrast storage devices Section.
Why Program? Computer – programmable machine designed to follow instructions Program – instructions in computer memory to make it do something Programmer.
What is Information Technology?
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 Programming Dr Masitah Ghazali Programming Techniques I SCJ1013.
Learning Targets Identify the external parts of the computer Identify examples of input devices Identify examples of output devices Define basic computer.
Explore the Parts of a Computer
Overview of Windows and Microsoft Word. Operating System Performs 3 functions –Controls the hardware of the computer Screen, keyboard, disk drives, etc.
Introduction Chapter 1. 1 History of Computers Development of computers began with many early inventions: The abacus helped early societies perform computations.
Introduction to Computers
An Introduction to Computers August 12, 2008 Mrs. C. Furman.
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.
Computer Basics By: Nicole Hayes. Purposes of Computers Business – Track inventory. – Calculate payroll. – Maintain databases. Personal – Surf the web.
Computer Parts. Two Basic Parts Hardware & Software.
Intro to Computers Computer Apps 1.
Introduction to Computers
I/O (Input and Output) An I/O device acts as an interface between a computer and a user Without I/O devices, a computer is nothing but a box full of.
C++ Programming: From Problem Analysis to Program Design, Third Edition Chapter 1: An Overview of Computers and Programming Languages.
Mrs. Ulshafer August, 2013 Java Programming Chapter 1.
What is a computer? Computer is a device for processing information.
School of Computer Science & Information Technology G6DICP Introduction to Computer Programming Milena Radenkovic.
Intro to Computers Computer Applications. What is a Computer? Initially the term computer referred to an individual whose job it was to perform mathematical.
Java Programming, 2E Introductory Concepts and Techniques Chapter 1 An Introduction to Java and Program Design.
Computer Systems Mrs. Butera. Computer Systems Hardware Software.
1 st Semester Introduction to Computer and Programming Computer Engineering Department Kasetsart University, Bangkok, THAILAND.
Computer Components: Software Computer Technology.
Beginning Snapshots Chapter 0. C++ An Introduction to Computing, 3rd ed. 2 Objectives Give an overview of computer science Show its breadth Provide context.
The Computer System CS 103: Computers and Application Software.
A.Abhari CPS1251 Topic 1: Introduction to Computers Computer Hardware Computer components Connecting Computers Computer Software Operating System (OS)
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,
Parts and Operation of a Computer
1 Introduction to Computers Prof. Sokol Computer and Information Science Brooklyn College.
©2013 Pearson Education, Inc. Upper Saddle River, NJ. All Rights Reserved. Introduction to Computers and Computing.
Computer Components. ● Many people believe that knowing how to use a computer is one of the basic skills needed to succeed in the workplace. ● In order.
CHAPTER 1 COMPUTER SCIENCE II. HISTORY OF COMPUTERS (1.1) Eniac- one of the worlds first computers Used more electricity than an entire city block of.
Chapter 1: Computer Basics Learning Objectives: Understand the purpose and elements of information systems Recognize the different types of computers Distinguish.
1 Chapter 1 Background Fundamentals of Java: AP Computer Science Essentials, 4th Edition Lambert / Osborne.
Introduction To Computer Programming – 1A Computer Parts, Words, and Definition Herriman High School.
HISTORY OF COMPUTER TECHNOLOGY By: Parveer Grewal.
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.
An Overview of the Computer System
An Introduction to The computer.
Computer Hardware and Software
Introduction to Computers
Eagle Challenge Google Classroom 5 Questions.
An Introduction to The computer.
Looking Inside the machine (Types of hardware, CPU, Memory)
Computer Applications
An Overview of the Computer System
Computer Science I CSC 135.
Computer Electronic device Accepts data - input
Introduction to Computers
Presentation transcript:

What is computer hardware? Computer hardware are the physical components of the computer.

Input/Output Devices Input/Output devices provide communication between user and hardware. – Input Devices Keyboard Mouse Scanner – Output Devices Monitor Speakers Printer

Processors and Memory Central Processing Unit (CPU) – Performs basic functions, millions and billions of times per second (brains of the computer) Random-Access Memory – Stores data used by the CPU (before and after processing)

Data Storage Data storage uses a variety of media. Capacity is measured in bits and bytes: – A bit represents the on or off state of a transistor (symbolized by a 1 or a 0). – A byte is eight bits. – A kilobyte is 2 10 or 1,024 bytes. – A megabyte is 1,048,576 bytes.

Hard Drives The hard drive is the primary storage device in a computer. Hard drives are: – Long term, rewritable storage – Large capacity – Inexpensive – Fixed media (relatively difficult to move from one computer to another)

Removable Media Some storage devices are more portable: – CD/DVD Medium capacity Inexpensive Easy to transport from one computer to another – Flash, Zip, USB drives Differing capacities Differing price per MB

Computer Software Software can be divided into two categories: – Systems software includes operating systems, compilers, and utilities. – Application software runs on top of an operating system.

What is an operating system? An operating system (OS) manages the hardware and software on a computer system. An OS: – Manages memory and hardware resources – Allocates resources to applications – Provides a consistent interface for applications

Operating Systems UNIX/Linux – Multiuser OS – Multitasking – Runs on many types of hardware – Modular tools Mac OS – First mainstream graphical user interface – Icons (pictures) and mouse replaced command line interface DOS/Windows – DOS gained popularity with first PCs – Windows provided graphical interface to DOS – Windows later separated itself from DOS underpinnings

Low-Level Languages Low-level programming languages use simple commands to communicate with the CPU: – Machine language (most basic language of the CPU) – Assembly language (human readable, but close to machine language)

High-Level Languages High-level languages can be procedural or object-oriented: – Procedural languages use a step-by-step process to solve a problem. Basic, Pascal, C – Object-oriented languages model problems using objects that correspond to real-world counterparts. Smalltalk, C++, Java