Chapter 1 Introduction to Computers Maran Illustrated Computers CIS 102 1.

Slides:



Advertisements
Similar presentations
Provide data pathways that connect various system components.
Advertisements

Number Systems and Codes
NUMBER SYSTEM. How to convert hexadecimal numbers to decimal numbers? 230 Working from right to left, MULTIPLY each position with 8 raised to the power.
DATA REPRESENTATION CONVERSION.
Lecture 2. How does the computer work? Prof. Sin-Min Lee Department of Computer Science.
Number Systems and Codes In PLC
Data Storage Introduction to computer, 2nd semester, 2010/2011 Mr.Nael Aburas Faculty of Information Technology Islamic.
© Copyright 2012 by Pearson Education, Inc. All Rights Reserved. 1 Number Systems 0, 1 0, 1, 2, 3, 4, 5, 6, 7 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 0, 1, 2, 3,
Number Systems.
66 CHAPTER THE SYSTEM UNIT. 2 System Units in Microcomputers System Units (system cabinet):container that contain the electronic components of computer.
Understanding Computers, Ch.31 Chapter 3 The System Unit: Processing and Memory.
1 Number SystemsLecture 8. 2 BINARY (BASE 2) numbers.
McGraw-Hill Technology Education © 2006 by the McGraw-Hill Companies, Inc. All rights reserved. 66 CHAPTER THE SYSTEM UNIT.
Conversion of Number System Conversion Among Bases The possibilities: Hexadecimal DecimalOctal Binary
What is a computer? A computer is a device that:
Binary Number System & Logic Operations. The focus of the last lecture was on the microprocessor During that lecture we learnt about the function of the.
Number System. Number Systems Important Number systems – Decimal – Binary – Hexadecimal.
CPS120: Introduction to Computer Science Computer Math: Converting to Decimal.
Lecture 2. How does the computer work? Prof. Sin-Min Lee Department of Computer Science.
Number Systems Binary to Decimal Octal to Decimal Hexadecimal to Decimal Binary to Octal Binary to Hexadecimal Two’s Complement.
Liang, Introduction to Java Programming, Eighth Edition, (c) 2011 Pearson Education, Inc. All rights reserved Number Systems 0, 1 0, 1, 2,
Chapter 2 Data Representation.
Number System sneha.
©Brooks/Cole, 2003 Chapter 2 Data Representation.
Octal to Decimal Hexadecimal DecimalOctal Binary.
Data Representation Hexadecimal  Although computers work in binary it is sometimes inconvenient for humans to read everything in Binary. For example in.
DECIMALBINARY a) b) c) d) e) f) Revision Exercise DECIMALBINARY a) b) c)
Binary01.ppt Decimal Decimal: Base 10 means 10 Unique numerical digits ,00010,000 Weight Positions 3,
Number Representation (Part 1) Computer Architecture (Fall 2006)
McGraw-Hill/Irwin Copyright © 2013 by The McGraw-Hill Companies, Inc. All rights reserved. Extended Learning Module A Computer Hardware and Software.
Semester One 2001/2002 Sheffield Hallam University1 What does a PC do? computers collect, process, store, and communicate information Collect via input.
MECH1500 Chapter 3.
Computer Number System
Semester 1 v CCNA 1 Module 1:Introduction. Semester 1 v Connecting to the Internet.
Digital Systems and Information Dr. Sanjay P. Ahuja, Ph.D. FIS Distinguished Professor of CIS ( ) School of Computing, UNF.
Number Systems. Topics  The Decimal Number System  The Binary Number System  Converting from Binary to Decimal  Converting from Decimal to Binary.
Cis303a_chapt03_exam1_answer.ppt CIS303A: System Architecture Exam 1: Chapter 3 Answer List the characters (digits) for the following bases. 1) Decimal:
The Hexadecimal System is base 16. It is a shorthand method for representing the 8-bit bytes that are stored in the computer system. This system was chosen.
Chapter 5 NUMBER REPRESENTATION AND ARITHMETIC CIRCUITS.
Prepared By: Norakmar Binti Mohd Nadzari CHAPTER 2 ARITHMETIC AND LOGIC UNIT.
Programmable Logic Controller
Unit 1 Introduction Number Systems and Conversion.
Appendix F Number Systems binary 0, 1 0, 1, 2, 3, 4, 5, 6, 7
Computer Architecture and Number Systems
Topic: Binary Encoding – Part 1
Digital Design Chapter One Digital Systems and Binary Numbers
Number Systems and Codes
Octal to Decimal Decimal Octal Binary Hexadecimal.
CSE 102 Introduction to Computer Engineering
Location in course textbook
2.0 COMPUTER SYSTEM 2.2 Number System and Representation
IT 0213: INTRODUCTION TO COMPUTER ARCHITECTURE
Chapter 1 Number Systems & Conversions
Data Storage Introduction to computer, 2nd semester, 2010/2011
Chapter 1: Computer Systems
Number Systems Base 2, 10, 16.
Chapter 4 Number Systems.
There are 10 types of people of people in this world…
Chapter Four Data Representation in Computers By Bezawit E.
Chapter 2 Number Systems.
Binary Addition (1 of 2) Two 1-bit values A B A + B 1
Lecture 4 Number Systems. von Neumann Model Every computer today is based on the von Neumann Model. It is based on 3 ideas: 1.Four subsystems 2.Stored.
Chapter 2 Number Systems.
Chapter 2 Number Systems.
Remember the 10 types of people of people in this world…
Networks & I/O Devices.
Chapter 2 Number Systems.
1. Number Systems Chapt. 2.
Dr. Clincy Professor of CS
Presentation transcript:

Chapter 1 Introduction to Computers Maran Illustrated Computers CIS 102 1

Hardware 2

Software 3

Getting Help 4

How Computers Work in General 5

Input devices 6

Process (CPU) 7

Output 8

Storage device 9

Data representation in Bytes 10

Computer Memory Memory is comprised of a large collection of bi-state (off/on) electrical devices called bits (binary digits) A single bit can assume the value 0 or 1. A single bit is not sufficient to represent all data ; therefore, it is necessary to use a sequence of bits.

Computer Memory How many bits are needed in a bit pattern to represent a symbol in a language? A bit pattern of size 1 can represent two different pieces of information. For example, to represent pass / fail we could use 0 - Fail 1 - Pass

Binary system The binary system is based on 2. There are only two digits: 0 and 1 We convert a number from binary to decimal by multiplying each binary digit by its corresponding power of 2. i.e. Multiply the bit at position n (n = 0, 1, 2, …) by

Figure 3-1 Decimal system

Figure 3-2 Binary system

Binary to Decimal Conversion Binary number

Figure 3-3 Binary to decimal conversion

1.Convert the binary number to decimal. 2.Convert the binary number to decimal. Exercises

Example 1 Convert the binary number to decimal. Solution Write out the bits and their weights. Multiply the bit by its corresponding weight and record the result. At t Write out the bits and their weights. Multiply the bit by its corresponding weight and record the result. At the end, add the results to get the decimal number. Binary Weights

Exercises 1.Convert the decimal number 35 to binary. 2.Convert the decimal number 327 to binary.

Base 8 (Octal ) Bit Pattern Bit Pattern Octal Digit Octal Digit Valid digits: 0, 1, 2, 3, 4, 5, 6, 7

Base 16 - Hexadecimal Bit Pattern Bit Pattern Hex Digit Hex Digit Bit Pattern Bit Pattern Hex Digit Hex Digit A B C D E F Valid digits: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F

Converting from base 2 to hexadecimal To convert from base 2 to hexadecimal 1. Organize the stream of binary digits into groups of four. 2. Find the hexadecimal value for each group of 4 bits E 1 A

Converting from hexadecimal to base 2 To convert from hexadecimal (base 16) to base 2 Convert each digit to its 4-bit equivalent. 9 2 E 1 A

Binary to hexadecimal and hexadecimal to binary transformation

1.Show the hexadecimal equivalent of the bit pattern Show the hexadecimal equivalent of the bit pattern What is the bit pattern for 2675 base 16? 4.What is the bit pattern for B51E base 16? Exercises

Review number systems Review base 10 Review base 2 (binary) Review base 16 (hexadecimal) Convert from decimal to binary Convert from binary to decimal Convert between binary and Hexadecimal See notes for links covering these topics 27

Types of computers 28

29

30

31

32

Surge Protector 33

UPS 34

Monitor Port 35

Sound Ports 36

Modem port 37

Ethernet (Network) Port 38

USB port 39

Firewire port 40

41

Daisy chaining 42

Plug and Play 43

Adding ports to your computer 44

45

Expansion slots 46

Connect devices 47

High-End video 48

Firewire or USB

High-End Sound 50

Network Interface Card (NIC) 51

52

53

54

55

56

57