Introduction to Computers

Slides:



Advertisements
Similar presentations
Calera High School Dawn Bone
Advertisements

Computer Basics Whats that thingamagige?. Parts of a computer.
Computer Systems I’m ONLY a machine!.
Computer Hardware.
Introduction to Computers
Computer Components.
What Is A Computer System?
Introduction to Computers
Computer Hardware.
1 Introduction to Computers Prof. Sokol Computer and Information Science Brooklyn College.
COMPUTER SYSTEM COMPONENTS ACTIVITY
ICAICT101A Operate a Personal Computer. A computer is an electronic device that allows you to process and store data (information)… 2.
Chapter 3 – Computer Hardware Computer Components – Hardware (cont.) Lecture 3.
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.
Computer Systems I’m ONLY a machine! Standard Grade Revision.
Computer Hardware and Software Jinchang Wang. Hardware vs. Software Hardware is something tangible. Computer hardware includes electronic circuitry and.
Computer Systems. Basic Components Auxiliary Storage OutputProcessor Main Memory Input.
WINDOWS Part 4 – Components of Computers. A World of Computers Computer Literacy –Knowledge and understanding of computers and their uses –Computers are.
Computers Inside and Out
Introduction to Computers
What is a Computer ? What is the application of computer in Our Daily Life ? What is the application of computer in Teaching Field?
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 Basics By: Nicole Hayes. Purposes of Computers Business – Track inventory. – Calculate payroll. – Maintain databases. Personal – Surf the web.
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.
1 Introduction to Computers By Masseta ICT Dept. Mzumbe University.
IT Groundwork ICS3UC - Unit 1 Hardware. Overview of Computer System.
Intro to Computers Computer Applications. What is a Computer? Initially the term computer referred to an individual whose job it was to perform mathematical.
The Computer System CS 103: Computers and Application Software.
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.
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),
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.
Introduction to Computers. What is a computer? An electronic device, operating under the control of instructions stored in its own memory unit, that can.
Basic Computer Terms & Concepts. Computer System A collection of devices, each with a special function. Four components of a computer system: »Input »Output.
Computers Inside & Out. How have computers affected your life? How has technology affected your life?
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.
ICT COMPUTER FUNDAMENTALS
Introduction to Computers
APPENDIX A HARDWARE AND SOFTWARE
Computer Basics 1 Computer Basics.
Computer Hardware and Software
The physical parts of the computer
ICT COMPUTER FUNDAMENTALS
TexPREP Summer Camp Computer Science
Computer Hardware Introduction.
Introduction to Computers
Introduction to Computers
Business Computer Technology
Introduction to Computers
Eagle Challenge Google Classroom 5 Questions.
Introduction to Computing Lecture # 1
Objective 2.01: Classify computer components
Objective 2.01: Classify computer components
Introduction to Computers
Hardware.
Computer Hardware.
Standard Grade Revision
Objective 2.01A: Classify Computer Components
Objective 2.01: Classify computer components
COMPUTER FUNDAMENTALS i
Computer Tech. Hardware, Storage, Misc..
Objective 4.01: Classify computer components
Presentation transcript:

Introduction to Computers Prof. Sokol Computer and Information Science Brooklyn College

What is a Computer? A COMPUTER is an electronic device that can: Receive information Perform processes Produce output Store info for future use.

Information Processing Cycle Input Process Output Storage

Hardware vs. Software Hardware - the physical parts that make up the computer e.g. CPU, memory, disks, CD-ROM drives, printer. Software - computer programs and applications. Operating system, word processor, games, etc.

Hardware: physical devices that comprise a computer system Monitor (output) Speaker (output) System unit (processor, memory…) Printer (output) Storage devices (CD-RW, Floppy, Hard disk, zip,…) Mouse (input) Scanner (input) Keyboard (input)

What Are The Primary Components Of A Computer ? Input devices. Central Processing Unit (control unit and arithmetic/logic unit). Memory. Output devices. Storage devices.

Input Devices Keyboard Mouse Scanner Camera Microphone Touchpad Stylus …..

Central Processing Unit The central processing unit (CPU) is the “brain” of the computer. It: interprets instructions to the computer (control unit), performs the arithmetic and logical processing (ALU)

CPU’s CPU’s are measured by their (clock) speeds, or frequency of instructions per second. Example: 2.4 GHz A multi-core processor has several processing units and can do more than one thing at a time. Example: duo or quad core.

Memory Memory, also called Random Access Memory or RAM stores: instructions waiting to be executed data needed by those instructions results of processed data Any information stored in RAM is lost when the computer is turned off.

Memory Data in memory is stored as binary digits (BITS) e.g. 011100101010 1 BYTE = 8 bits 1 byte usually stores 1 text character.

Memory (cont) Memory can be viewed as a long list of numbered locations. Data can be written and erased from these locations. There are usually several levels of memory. Cache is the fastest, most expensive kind of memory.

Amount Of RAM In Computers We measure the size of memory by telling how many bytes it can hold. 1 kilobyte = 210 bytes = 1024 bytes 1 megabyte = 220 bytes = ~1 million bytes 1 gigabyte = 230 bytes = ~1 billion bytes 1 terabyte = 240 bytes = ~1 trillion bytes Typical RAM size: 4 to 16 GB. Note: a 32 bit OS can only handle up to 4GB of RAM since 232=4GB.

Output Devices Output devices make the information resulting from the processing available for use. printer - produces a hard copy of your output screen - produces a soft copy of your output speakers, etc.

Storage Devices Auxiliary storage devices are used for permanent storage of data. magnetic disks (hard disks, floppy disks) optical disks (CD and DVD drives) USB drives and flash memory cards

Hard Disks (magnetic storage) Permanent storage that is inside of the computer, and NOT portable. Consists of several platters which spin very fast Typical hard disks range from 80 GB to 2 terabytes.

Optical Discs Use laser to read and write: CD-ROM (read only memory), CD-RW – (rewritable) DVD-ROM DVD+RW Typical CD’s can store about 700 MB Typical DVD’s can store up to 17 GB

Software A computer program or software tells it exactly what to do. A computer program is a set of instructions to the computer. The computer does one instruction at a time. (Note: each core performs one instruction at a time.)

Our goal…. This semester, our goal is to learn how to write our very own computer program.