Computer Studies Today Chapter 19 1 Chapter 19. Computer Studies Today Chapter 19 2 »Information stored in a computer is in two states: –ON –OFF.

Slides:



Advertisements
Similar presentations
ECE 331 – Digital System Design
Advertisements

Sample Test 1 Question. A pattern of binary digits can be interpreted in several different ways. Show how the pattern translates using each of.
Representing Data, Pictures, Time, and Size in Computer
Decimal Addition What is going on? (carry) (subtract the base)
Binary numbers. 1 Humans count using decimal numbers (base 10) We use 10 units: 0, 1, 2, 3, 4, 5, 6, 7, 8 and (5.
Number Systems and Codes In PLC
Data Storage Introduction to computer, 2nd semester, 2010/2011 Mr.Nael Aburas Faculty of Information Technology Islamic.
Hexadecimal and ASCII Lesson Objective: Understand the purpose of ASCII and how to use it. Lesson Outcome: Convert between Hexadecimal and ASCII Convert.
Number Systems.
Fundamentals of Python: First Programs Chapter 4: Number Systems.
A-Level Computing Data representation. Objectives Know how data can be represented in a computer system Understand the need for various forms of representation.
1 Number SystemsLecture 8. 2 BINARY (BASE 2) numbers.
Data Representation S2. This unit covers how the computer represents- Numbers Text Graphics Control.
DECIMAL BASE Based on power of 10 In the number 2,468 – from right to left -- the 8 represents the ones, the 6 represents the tens, the 4 represents the.
Supplemental Chapter Number Bases
Representation of Data Ma King Man. Reference Text Book: Volume 2 Notes: Chapter 19.
Number System. Popular number systems Decimal. (Base 10). The system that we humans are most familiar with. Binary. (Base 2). Octal. (Base 8). Hexadecimal.
INTRODUCTION TO COMPUTING LECTURE#04. TRANSFORMING DATA INTO INFORMATION Understands only two states either On or Off  Makes different patterns of 0s.
CONVERSION OF NUMBER SYSTEMS FAHEEM ANWAR MANAGER NETWORKS ACADEMY PTCL ACADEMY.
Introduction to Computing Dr. Nadeem A Khan. Lecture 10.
Number Systems Binary to Decimal Octal to Decimal Hexadecimal to Decimal Binary to Octal Binary to Hexadecimal Two’s Complement.
CIT PowerPoint presentation Group 4. Unit 1, Chapter 2 Basic Concept on Data DATA AND INFORMATION What is data? Data consists of all sorts of unorganised.
Chapter 2 Data Representation.
Copyright © 2002 Delmar Thomson Learning Chapter 4 Number Systems.
Octal to Decimal Hexadecimal DecimalOctal Binary.
CS 101 – Aug. 31 Interpreting binary  decimal √ Decimal  binary Shorthand ways of expressing binary –Octal –“Hex” Negative numbers.
Working with 8-bit bytes and hexadecimal
Hexadecimal Data Representation. Objectives  Know how the Hexadecimal counting system works  Be able to convert between denary, binary & hexadecimal.
Data Representation Hexadecimal  Although computers work in binary it is sometimes inconvenient for humans to read everything in Binary. For example in.
Chapter 1  Number Systems Decimal System Binary System Octal System Hexadecimal System  Binary weighted cods Signed number binary order  1’s and 2’s.
Number Bases and Representation. Denary Number System (Base 10) Our number system uses 10 digits (0-9) As you move from right to left each number is worth.
Binary01.ppt Decimal Decimal: Base 10 means 10 Unique numerical digits ,00010,000 Weight Positions 3,
CEC 220 Digital Circuit Design Number Systems & Conversions Friday, January 9 CEC 220 Digital Circuit Design Slide 1 of 16.
CEC 220 Digital Circuit Design Number Systems & Conversions Wednesday, Aug 26 CEC 220 Digital Circuit Design Slide 1 of 16.
Arithmetic Chapter 4 Subject: Digital System Year: 2009.
Fractions and Decimal Fractions Fractions Decimal Fractions
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.
Binary a. express numbers in binary, binary-coded decimal (BCD), octal and hexadecimal;
Welcome to CSE 370 Introduction to Digital Design Jan 10, 2002.
Number Systems Decimal Can you write 12,045 in expanded form? Base? Allowable digits for each place?
Data Representation Covering… Binary addition / subtraction
Computer Science 210 Computer Organization
Number Systems and Codes
Different Numeral Systems
Introduction to Computing
Octal to Decimal Decimal Octal Binary Hexadecimal.
COMPUTER ORGANIZATION
Base ‘b’ number for i = 0 to n – 1 for an n digit quantity
CSE 102 Introduction to Computer Engineering
Data Storage Introduction to computer, 2nd semester, 2010/2011
Binary Quiz UIN: ____________________
Chapter 4 Number Systems.
Computer Science 210 Computer Organization
Binary, Octal and Hex Numbers Copyright Thaddeus Konar
Chapter 2: Number Systems
Data Binary Conversion.
The basics of any electronic device means either electricity is flowing or it is not i.e. a switch is either on or off Computers are electronic devices.
Chapter 2 Number Systems.
Binary Addition (1 of 2) Two 1-bit values A B A + B 1
Storing Integers and Fractions
Chapter 2 Number Systems.
GCSE COMPUTER SCIENCE Topic 3 - Data 3.4 Hexadecimal Conversion.
Hexadecimal.
Chapter 2 Number Systems.
Chapter 2 Number Systems.
Presentation transcript:

Computer Studies Today Chapter 19 1 Chapter 19

Computer Studies Today Chapter 19 2 »Information stored in a computer is in two states: –ON –OFF

Computer Studies Today Chapter 19 3 »They are represented by the binary digits ‘1’ and ‘0’ respectively. »As the number of bits increases, the bit pattern is increased and more information can be stored.

Computer Studies Today Chapter 19 4

5 »Numbers can be represented in different number systems: –Denary number system –Binary number system

Computer Studies Today Chapter 19 6 –Octal number system –Hexadecimal number system

Computer Studies Today Chapter 19 7 »Digits 0, 1, 2, 3, 4, 5, 6, 7, 8 and 9 are used to represent numbers. »It is a base-10 number system. »A number is formed by the combination of the digits, for example 21 10, ,

Computer Studies Today Chapter 19 8 Denary Numbers in Expanded Form The denary number in expanded form is:

Computer Studies Today Chapter 19 9 i.e = 4     10 0

Computer Studies Today Chapter The decimal fraction in expanded form is:

Computer Studies Today Chapter i.e = 2  10 –1 + 1  10 –2 + 3  10 –3

Computer Studies Today Chapter »Digits 0 and 1 are used to represent numbers. »It is a base-2 number system. »A number is formed by the combination of the digits, for example 10 2, 110 2,

Computer Studies Today Chapter Binary Numbers in Expanded Form The binary number in expanded form is:

Computer Studies Today Chapter i.e = 1     2 0

Computer Studies Today Chapter The binary fraction in expanded form is:

Computer Studies Today Chapter i.e = 1  2 –1 + 0  2 –2 + 1  2 –3 + 1  2 –4

Computer Studies Today Chapter »Digits 0, 1, 2, 3, 4, 5, 6 and 7 are used to represent numbers. »It is a base-8 number system. »A number is formed by the combination of the digits, for example 123 8, 470 8,

Computer Studies Today Chapter Octal Numbers in Expanded Form The octal number in expanded form is:

Computer Studies Today Chapter i.e = 3    8 0

Computer Studies Today Chapter »Digits 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 and letters A, B, C, D, E, F are used to represent numbers. »It is a base-16 number system.

Computer Studies Today Chapter »A number is formed by the combination of the digits and the letters, for example 2C4D 16, A95 16.

Computer Studies Today Chapter Hexadecimal Numbers in Expanded Form The hexadecimal number 2C3D 16 in expanded form is:

Computer Studies Today Chapter i.e. 2C3D 16 = 2     16 0