Born to be Programmer TeguhSutanto, M.Kom.

Slides:



Advertisements
Similar presentations
Computer Memory and Data Transfer
Advertisements

Computer Systems. Computer System Components Computer Networks.
Chapter 1- Visual Basic Schneider1 Chapter 1 An Introduction to Computers and Visual Basic.
BA 471 Management Information Systems Hardware Basics.
Fundamentals Computing Components 01/23/15. Hardware Physical Components Bit  Open or Closed Switch  High or Low Signal  Zero or One Byte  Eight bits.
CPU Describe the purpose of the CPU
KEY COMPONENTS OF A COMPUTER SYSTEM ANDREW LOLAVAR.
Computer Organization ANGELITO I. CUNANAN JR. 1. What is Computer?  An electronic device used for storing and processing data.  It is a machine that.
Computer Organization 1. INTRODUCTION The Second half of the twentieth century is usually known as the Age of Computers The term ‘Computer’ originates.
Basic Microcomputer Design. Inside the CPU Registers – storage locations Control Unit (CU) – coordinates the sequencing of steps involved in executing.
3 1 3 C H A P T E R Hardware: Input, Processing, and Output Devices.
Personal Computer Adapted by Dr. Semmes from Mrs. Jungman’s Hardware Presentation and Mrs. Belisle’s Class Notes.
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.
Computers organization & Assembly Language Chapter 0 INTRODUCTION TO COMPUTING Basic Concepts.
CENTRAL PROCESSING UNIT – a,b,c & d a - The Purpose of a CPU The CPU is the brain of the computer. The Purpose of the CPU is to process.
Stages of Processing.  When a computer is given instructions, a series of tasks must take place in order for a result to be accomplished  To accomplish.
The Central Processing Unit (CPU) and the Machine Cycle.
CS 111 – Sept. 15 Chapter 2 – Manipulating data by performing instructions “What is going on in the CPU?” Commitment: –Please read through section 2.3.
Computer Organization & Assembly Language © by DR. M. Amer.
Computer Architecture Memory, Math and Logic. Basic Building Blocks Seen: – Memory – Logic & Math.
Computer Structure & Architecture 7b - CPU & Buses.
Stored Programs In today’s lesson, we will look at: what we mean by a stored program computer how computers store and run programs what we mean by the.
CENTRAL PROCESSING UNIT. CPU Does the actual processing in the computer. A single chip called a microprocessor. Composed of an arithmetic and logic unit.
CPU The Central Processing Unit (CPU), has 3 main parts: Control Unit Arithmetic and Logic Unit Registers. These components are connected to the rest.
Introduction to ComputersS1.1.1 Bina © 1998 Liran & Ofir Programming in C.
CENTRAL PROCESSING UNIT Written by: Gizem Gulsen.
E X C E E D I N G E X P E C T A T I O N S L3-CPU IS 4490 N-Tier Client/Server Architectures Dr. Hoganson Kennesaw State University Layer 3 - CPU CPU has.
TOPIC: CENTRAL PROCESSING UNIT PRESENTED BY: MS. AMBER AMAR.
HOW COMPUTERS WORK THE CPU & MEMORY. THE PARTS OF A COMPUTER.
Chapter 2 Turning Data into Something You Can Use
Central Processing Unit (CPU) MATTHEW BOWEN. Function  The function of the CPU is to execute all of the commands and calculations or “processes” that.
Question What technology differentiates the different stages a computer had gone through from generation 1 to present?
 A computer is an electronic device that receives data (input), processes data, stores data, and produces a result (output).  It performs only three.
3.1 Components. Overview Identify component parts of a typical home PC from a photograph or diagram.
Chapter 20 Computer Operations Computer Studies Today Chapter 20.
C++ Programming: From Problem Analysis to Program Design, Fifth Edition Chapter 1: An Overview of Computers and Programming Languages.
Victoria Ibarra Mat:  Generally, Computer hardware is divided into four main functional areas. These are:  Input devices Input devices  Output.
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.
Computer Architecture and Number Systems
Computing Science Computer Structure: Lesson 1: Processor Structure
Software Development Environment
Java Programming: From the Ground Up
CHAPTER 1: Computers and Systems
Chapter 10: Computer systems (1)
Computer Organization and Architecture
Computer Organisation
Edexcel GCSE Computer Science Topic 15 - The Processor (CPU)
COMPUTER ORGANIZATION & ASSEMBLY LANGUAGE
Central Processing Unit (CPU)
Chapter 2 – Computer hardware
Components of Computer
Chapter 1: An Overview of Computers and Programming Languages
CPU & its Components CPU stands for central Processing Unit
General Architecture of Digital Computer
Micro-programmed Control Unit
Computer Architecture
Number Representations and Basic Processor Architecture
PARTS OF THE COMPUTER squires productions.
Computer Electronic device Accepts data - input
Computer Architecture
Computer Electronic device Accepts data - input
Processor Organization and Architecture
CPU Key Revision Points.
Computer Electronic device Accepts data - input
Introduction to Computer Systems
Understand the interaction between computer hardware and software
Chapter 6: Understanding and Assessing Hardware
Computer components is a programmable machine that receives input, stores and manipulates data, and provides output in a useful format. Computer The computer.
OCR GCSE (9-1) Computer Science (J276)
Presentation transcript:

Born to be Programmer TeguhSutanto, M.Kom. teguh.sutanto@gmail.com teguh@stikom.edu http://blog.stikom.edu/teguh http://teguhsutanto.blogspot.com

Computer A computer is a machine that performs computations, logical operations, or more generally, data manipulation according to some prescribed sequence of instructions called a computer program. The physical components of a computer are termed hardware and the programs software.

Resume A computer is a machine that performs computations, logical operations, and data manipulation according to some prescribed sequence of instructions called computer program . The physical components of a computer are called hardware . The programs that run on a computer are called software . The central processing unit ( CPU ) is that part of the computer that performs most calculations and makes decisions. The arithmetic and logic unit ( ALU ) is the part of the CPU that performs arithmetical calculations. The control unit ( CU ) coordinates the calculations of the ALU and the movement of data between the CPU and RAM. The clock determines how frequently the computer hardware executes instructions. A computer stores data in binary format , i.e., as a sequence of 0’s and 1’s. A single 0 or 1 is called a bit ; a sequence of eight bits is called a byte .

How to Start Learning Computer Programming Start with a good book or tutorial on programming Get a compiler/interpreter/IDE for the programming language your book uses Read the book! Try putting together your own ideas to form a working program Once you start actively programming in your first language, you may want to learn a second one Continue programming and trying new things Learn how to type - This is very essential as it is make your programming very fast and effective http://www.wikihow.com/Start-Learning-Computer-Programming

How to Program