Chapter 2: Binary Values and Number Systems Chapter 2 Binary Values and Number Systems Page 14 Information may be reduced to its fundamental state by.

Slides:



Advertisements
Similar presentations
Thinking Mathematically
Advertisements

Copyright (c) 2004 Professor Keith W. Noe Number Systems & Codes Part I.
Chapter Chapter Goals Know the different types of numbers Describe positional notation.
1 Number Systems. 2 Numbers Each number system is associated with a base or radix – The decimal number system is said to be of base or radix 10 A number.
Number Systems and Codes In PLC
Chapter 1 1 Number Systems. 2 Objectives  Understand why computers use binary (Base-2) numbering.  Understand how to convert Base-2 numbers to Base-
Bit Patterns – Day 2 Scott Baranick & Daniel Velasquez.
A-Level Computing Data representation. Objectives Know how data can be represented in a computer system Understand the need for various forms of representation.
IT-101 Section 001 Lecture #3 Introduction to Information Technology.
1 Number SystemsLecture 8. 2 BINARY (BASE 2) numbers.
Data Representation – Chapter 3 Section 3-1. Terminology “Digital” –Discrete, well defined values/steps –Opposite of analog –Analogy: digital is to analog.
Chapter 2 Binary Values and Number Systems. 2 2 Natural Numbers Zero and any number obtained by repeatedly adding one to it. Examples: 100, 0, 45645,
Number Systems Ron Christensen CIS 121.
Chapter 7—Objects and Memory The Art and Science of An Introduction to Computer Science ERIC S. ROBERTS Java Objects and Memory C H A P T E R 7 Yea, from.
Chapter1: Number Systems
Number Bases In today’s lesson we will look at: what we mean by a number base how ordinary numbers work a number system called binary why binary is useful.
Positional Notation 642 in base 10 positional notation is:
©Contrinex JDC PPT_XF_BinHexDecASCII Encoding information J.-D. Chatelain.
Lecture 2 Binary Values and Number Systems. The number 943 is an example of a number written in positional notation. The relative positions of the digits.
Data Representation – Chapter 3 Section 3-1. Terminology “Digital” –Discrete, well defined values/steps –Opposite of analog –Analogy: digital is to analog.
Chapter 2 Number Systems: Decimal, Binary, and Hex.
Chapter 2 Bits, Data Types, and Operations. 2-2 Hexadecimal Notation It is often convenient to write binary (base-2) numbers as hexadecimal (base-16)
Programming Logic Controllers Number Systems and Codes - Chapter 3.
Chapter 2 Binary Values and Number Systems Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in.
© 2010 Pearson Prentice Hall. All rights reserved. CHAPTER 4 Number Representation and Calculation.
Number Systems – Definitions page 214 The radix or base 밑 refers to the number b in an expression of the form b n. The number n is called the exponent.
ROM CPU CMOS HARD DRIVERAM. POWER on off 1 bit 8 bits = 1 byte.
Arithmetic Chapter 4 Subject: Digital System Year: 2009.
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.
CMSC 1041 Binary / Hex Binary and Hex The number systems of Computer Science.
Number Systems. ASCII – American Standard Code for Information Interchange – Standard encoding scheme used to represent characters in binary format on.
CPIT 201 King AbdulAziz University Faculty of Computing & Information Technology Information Technology Department CH 2 Number Systems CPIT 201 Introduction.
Decimal Numbers.
Discrete Mathematics Numbering System.
Digital Electronics INTRODUCTION ANALOG VS DIGITAL NUMBER SYSTEMS.
Copyright (c) 2004 Professor Keith W. Noe
Number Systems.
2.0 COMPUTER SYSTEM 2.2 Number System and Representation
4.2 Number Bases in Positional Systems
RFID - EN Encoding information Encoding information J.-D. Chatelain.
Binary Lesson 1 Nybbles.
Tools of Web Development 1: Module A: Numbering Systems
Number System conversions
Number Bases In today’s lesson we will look at:
Binary Lesson 1 Nybbles.
Number Bases In today’s lesson we will look at:
Binary Lesson 1 Nybbles.
Numbering System TODAY AND TOMORROW 11th Edition
Binary / Hex Binary and Hex The number systems of Computer Science.
Binary Lesson 3 Hexadecimal
Binary Lesson 2 Bytes.
Binary Lesson 2 Bytes.
Binary Lesson 3 Hexadecimal
Chapter 2: Number Systems
Binary Lesson 3 Hexadecimal
Binary Lesson 2 Bytes.
Binary Lesson 3 Hexadecimal
Chapter Four Data Representation in Computers By Bezawit E.
Chapter 2 Number Systems.
Number Systems Rayat Shikshan Sanstha’s
Chapter 2 Number Systems.
Binary Lesson 4 Hexadecimal and Binary Practice
GCSE COMPUTER SCIENCE Topic 3 - Data 3.4 Hexadecimal Conversion.
Number Systems Rayat Shikshan Sanstha’s
Chapter 2 Number Systems.
Binary Lesson 1 Nybbles.
Information Representation
Chapter 2 Number Systems.
Binary Lesson 1 Nybbles.
Presentation transcript:

Chapter 2: Binary Values and Number Systems Chapter 2 Binary Values and Number Systems Page 14 Information may be reduced to its fundamental state by means of binary numbers (e.g., on/off, true/false, yes/no, high/low, positive/negative).Information may be reduced to its fundamental state by means of binary numbers (e.g., on/off, true/false, yes/no, high/low, positive/negative). “Bits” (binary digits) are used to accomplish this. Normally, we consider a binary value of 1 to represent a “high” state, while a binary value of 0 represents a “low” state.“Bits” (binary digits) are used to accomplish this. Normally, we consider a binary value of 1 to represent a “high” state, while a binary value of 0 represents a “low” state. In machines, these values are represented electronically by high and low voltages, and magnetically by positive and negative polarities.In machines, these values are represented electronically by high and low voltages, and magnetically by positive and negative polarities.

Binary Numerical Expressions Chapter 2 Binary Values and Number Systems Page 15 Binary expressions with multiple digits may be viewed in the same way that multi-digit decimal numbers are viewed, except in base 2 instead of base 10.Binary expressions with multiple digits may be viewed in the same way that multi-digit decimal numbers are viewed, except in base 2 instead of base 10. For example, just as the decimal number 275 is viewed as 5 ones, 7 tens, and 2 hundreds combined, the binary number can be viewed in right-to-left fashion as...For example, just as the decimal number 275 is viewed as 5 ones, 7 tens, and 2 hundreds combined, the binary number can be viewed in right-to-left fashion as ones0 ones 1 two1 two 1 four1 four 0 eights0 eights 1 sixteen1 sixteen 0 thirty-twos0 thirty-twos 1 sixty-four1 sixty-four 0 one hundred twenty-eights0 one hundred twenty-eights So, is equivalent to the decimal number =

Hexadecimal (Base-16) Notation Chapter 2 Binary Values and Number Systems Page 16 As a shorthand way of writing lengthy binary codes, computer scientists often use hexadecimal notation.As a shorthand way of writing lengthy binary codes, computer scientists often use hexadecimal notation. For example, the binary expression may be written in hexadecimal notation as B2E8. The two expressions mean the same thing, but they are in different notations. Binary Code Hexadecimal Notation Binary Code Hexadecimal Notation A 1011B 1100C 1101D 1110E 1111F