CHAPTER 1 GC 101 Introduction to computers and programs.

Slides:



Advertisements
Similar presentations
Calera High School Dawn Bone
Advertisements

Chapter 1 Introduction to Computers. What Is a Computer? What is a computer? An electronic machine, operating under the control of instructions stored.
Inside the Computer Mr. Rowe Computer Tech
Computer Bits and Parts Parts of the computer system.
Computer Components.
Using Computers CS French Chapter 1.
Introduction to Computer Systems
Introduction to Computers
Computer Hardware.
1 Introduction to Computers Prof. Sokol Computer and Information Science Brooklyn College.
Computer Hardware Information Technology Week 5 and 6
Computers Are Your Future Eleventh Edition Chapter 2: Inside the System Unit Copyright © 2011 Pearson Education, Inc. Publishing as Prentice Hall1.
Copyright © 2006 by The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill Technology Education Introduction to Computer Administration Introduction.
CHAPTER 1 GC 101 Introduction to computers and programs.
 What is a Computer What is a Computer  Functions of Computer Functions of Computer  Input Device of a Computer Input Device of a Computer  Output.
 2003 Prentice Hall, Inc. All rights reserved. Chapter 1 – Introduction to Computers, the Internet, and the Web Outline 1.1 Introduction 1.2 What Is a.
Introduction to Computers and Python. What is a Computer? Computer- a device capable of performing computations and making logical decisions at speeds.
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 Organization ANGELITO I. CUNANAN JR. 1. What is Computer?  An electronic device used for storing and processing data.  It is a machine that.
An Introduction To Computer Hardware
Today’s Agenda: Computer Basics Review Hardware: The physical components of a computer, any internal or external computer part that you can touch. Software:
INTRODUCTION TO COMPUTING
COMPUTER SYSTEM.
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?
1 Introduction to Computers Prof. Sokol Computer and Information Science Brooklyn College.
Computer Basics By: Nicole Hayes. Purposes of Computers Business – Track inventory. – Calculate payroll. – Maintain databases. Personal – Surf the web.
Computer Hardware Information Technology Week 5 and 6
Intro to Computers Computer Apps 1.
Introduction to Computers
Computer Basics.
Computer Confluence 7/e © 2006 Prentice-Hall, Inc.
What is a computer? Computer is a device for processing information.
Intro to Computers Computer Applications. What is a Computer? Initially the term computer referred to an individual whose job it was to perform mathematical.
Parts of a Computer - Introduction
Parts of the Computer System
Identify internal hardware devices (e. g
Looking Inside the Computer System
Three Jobs of a Computer 1. Input 2. Processing 3. Output.
Exploring Windows and Essential Computing Concepts - Getting Started 1 Getting Started Essential Computing Concepts.
Computer Architecture2  Computers are comprised of three things  The physical computer  The operating system  The user and programs running on the.
Senem KUMOVA METİN // Fall CS 115 Introduction to Programming Introduction to Computing.
PARTS OF A COMPUTER 2 Hardware Computer Hardware is any of the physical parts of the computer you can touch. There are 4 categories: 1. Input Devices.
1 Introduction to Computers, the Internet and World Wide Web.
1 Introduction to Computers Prof. Sokol Computer and Information Science Brooklyn College.
Introduction To Computers
Computers Are Your Future Eleventh Edition Chapter 2: Inside the System Unit Copyright © 2011 Pearson Education, Inc. Publishing as Prentice Hall1.
Basic concepts of a computer system V1.0 (21/11/2005)
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.
Identify internal hardware devices (e. g
Sara Naheed Amjad Information Technology
Sara Naheed Amjad Information Technology
Parts of a computer Vocabulary & Labeling.
GC101 Introduction to computers and programs
Introduction to Computers
08/28/06 parts of the computer.
Introduction to Computing Lecture # 1
Computer Parts There are many parts that work together to make a computer work.
0. What is a Computer?.
Introduction to Computers
Processing Computer Components.
What is Computer A computer is a general purpose device that can be programmed to carry out a finite set of arithmetic or logical operations. Since a sequence.
ITEC 1011 Introduction to Information Technologies 0. What is a Computer?
Processing Devices.
Introduction to Computers, Internet and the World Wide Web
Computer Electronic device Accepts data - input
Bioinformatics (Nursing)
4. Computer system.
Introduction to Computers
08/28/06 parts of the computer.
Presentation transcript:

CHAPTER 1 GC 101 Introduction to computers and programs

INTRODUCTION  The purpose of this course is to teach you about computing, but particularly, programming in Java (a powerful, widely- used programming language).  Why care about computers and programming?  Enabling technology  Growing field with great opportunity  Creative outlet 2

3 WHAT IS A COMPUTER?  How is a computer defined?  Electronic device operating under the control of instructions stored in its own memory

4 WHAT IS A COMPUTER?  Computer  Performs computations and makes logical decisions  Millions / billions times faster than human beings  Computer programs  Sets of instructions by which a computer processes data  Hardware  Physical devices of computer system  Software  Programs that run on computers  2003 Prentice Hall, Inc. All rights reserved.

5 WHAT IS THE INFORMATION PROCESSING CYCLE? Input Process Output Storage Communication

6 COMPUTER ORGANIZATION  Six logical units of computer system  Input unit  Mouse, keyboard  Output unit  Printer, monitor, audio speakers  Memory unit  Retains input and processed information  Arithmetic and logic unit (ALU)  Performs calculations  Central processing unit (CPU)  Supervises operation of other devices  Secondary storage unit  Hard drives, floppy drives  2003 Prentice Hall, Inc. All rights reserved.

7 THE COMPONENTS OF A COMPUTER  What is an input device?  What is an input device?  Hardware used to enter data and instructions

8 THE COMPONENTS OF A COMPUTER  What is an output device?  Hardware that  conveys information to a user

9 THE COMPONENTS OF A COMPUTER What is the system unit?  Box-like case Containing electronic components used to process data

10 WHAT IS THE MAGICAL INSIDE THE BLACK BOX? CPU Memory card Sound Card Video Card Storage Units Power Supply

THE COMPONENTS OF A COMPUTER 11  What are two main components on the motherboard?   Central Processing Unit (CPU)  Also called a processor  Carries out instructions that tell computer what to do   Memory  Temporary holding place for data and instructions

 12 THE COMPONENTS OF A COMPUTER  What is storage?  Holds data, instructions, and information for future use

13 WHY IS A COMPUTER SO POWERFUL? What makes a computer powerful? Speed Reliability Accuracy Storage Communications

LEARN THE CORE CONCEPTS OF ALL PROGRAMMING LANGUAGES  There are many programming languages available: Pascal, c, Java, Perl and Python.  All of these languages share core concepts.  By focusing on these concepts, you are better able to learn any programming language.  Hence, by learning Java, you are poised to learn other languages, such as C++ or Perl.  By learning the core concepts, you are also much more marketable as you are able to learn new technologies quicker. 14

AN EXAMPLE: FOR LOOPS  Java has a construct called a for loop that enables a program to repeat actions over and over.  Most other languages also have a for loop.  Hence, by learning about for loops in Java, you can easily learn for loops in C or Python. 15