Data Basics. Binary Number System Numeration systems are methods of representing numbers. All current number systems are positional in nature. In 34237.

Slides:



Advertisements
Similar presentations
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.
Advertisements

How Computers Represent Numbers Friday, Week 5. Binary Code A series of 1’s and 0’s Place value is in powers of 2.
How Computers Represent Numbers Friday, Week 5. Binary Code A series of 1’s and 0’s Place value is in powers of 2.
CISCO NETWORKING ACADEMY Chabot College ELEC 74A Hexadecimal Introduction.
Computer Number Systems This presentation will show conversions between binary, decimal, and hexadecimal numbers.
 Binary Binary  Binary Number System Binary Number System  Binary to Decimal Binary to Decimal  Decimal to Binary Decimal to Binary  Octal and Hexadecimal.
Data Storage Introduction to computer, 2nd semester, 2010/2011 Mr.Nael Aburas Faculty of Information Technology Islamic.
Number Systems.
COMT 222 Tools for a Digital World. Digital? What makes information Digital? If it helps:  When is information not analog? Answer:  A finite number.
1 Number SystemsLecture 8. 2 BINARY (BASE 2) numbers.
Binary Code.
Supplemental Chapter Number Bases
Salisbury Numbers we use in Auto Shop Why do I need to know this. When working on the computers in the auto shop sometimes we need to look into the.
ENGINEERS FUTURE To optimize things When we type some letters or words, the computer translates them in numbers as computers can understand only numbers.
Binary! Why do computers use binary? Easy to detect the state of a switch – they’re either on or off! Using another base makes.
NUMBER SYSTEM Decimal System Binary System. We use two digits in this system (0,1) just like the existing system of computers.. And write the number in.
CMSC 104, Lecture 051 Binary / Hex Binary and Hex The number systems of Computer Science.
Converting From decimal to Binary & Hexadecimal to Binary
AP Computer Science A – Healdsburg High School 1 Unit 1 - Binary Numbers - Hexadecimal Numbers.
Working with 8-bit bytes and hexadecimal
Data Representation Hexadecimal  Although computers work in binary it is sometimes inconvenient for humans to read everything in Binary. For example in.
Visualizing Decimal and Binary
Numbering Systems Chapter 1 Department of Computer Science Foundation Year Program Umm Alqura University, Makkah Computer Programming Skills
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,
Springfield Technical Community College Center for Business and Technology.
The College of Saint Rose CSC 202 – Introduction to Programming David Goldschmidt, Ph.D.
ECE 362 Microprocessor Systems and Interfacing ©5-1 Lecture 1 Hexadecimal Computation Outline n Decimal n Binary n Octal n Hexadecimal.
Binary Numbers Computer Science 2. Why Binary Numbers? Early computers were analog –Numbers were stored as an intensity –E.g. 2.7 volts was 27, 3.4 volts.
© 2010 Pearson Prentice Hall. All rights reserved. CHAPTER 4 Number Representation and Calculation.
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.
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.
CMSC 1041 Binary / Hex Binary and Hex The number systems of Computer Science.
Base 16 (hexadecimal) Uses the decimal digits and the first letters of the alphabet to encode 4 binary bits (16=2 4 ) abcdef or ABCDEF.
Binary, Decimal and Hexadecimal Numbers 1. Numbering Systems Radix - In mathematical numeral systems, the radix or base is the number of unique digits,
Binary Numbers. Decimal vs Binary = 1001 = 101 = 10 1 = on = 0 = off = On and off.
Programmable Logic Controller
Hexadecimal Sweet Sixteen!.
Binary, Decimal and Hexadecimal Numbers
Positional Notation A positional or place-value notation is a numeral system in which each position is related to the next by a constant multiplier, called.
EPSII 59:006 Spring 2004.
2.0 COMPUTER SYSTEM 2.2 Number System and Representation
4.2 Number Bases in Positional Systems
Data Storage Introduction to computer, 2nd semester, 2010/2011
Binary Quiz UIN: ____________________
Number Systems Base 2, 10, 16.
Binary, Octal and Hex Numbers Copyright Thaddeus Konar
Digital Electronics Ms. Deepa Mehta.
Unit 2.6 Data Representation Lesson 1 ‒ Numbers
Everything that goes on under the hood of a computer is done in binary -- the language of 0s and 1s. If we have only two numbers, it's very easy to represent.
Data Hexadecimal.
Binary, Octal and Hex Numbers Copyright Thaddeus Konar
There are 10 types of people of people in this world…
Binary Lesson 3 Hexadecimal
Data Binary Conversion.
Binary Lesson 3 Hexadecimal
Binary Numbers The Binary number system is derived from Base 2. In base 2 there are only 2 numerical options 0 and 1. The computer sees these as Off.
Binary Lesson 4 Hexadecimal and Binary Practice
Chapter 2 Number Systems.
Binary Addition (1 of 2) Two 1-bit values A B A + B 1
Numeral systems (radix)
Chapter 2 Number Systems.
CS 286 Computer Organization and Architecture
GCSE COMPUTER SCIENCE Topic 3 - Data 3.4 Hexadecimal Conversion.
Chapter 2 Number Systems.
Information Representation
GCSE COMPUTER SCIENCE Topic 3 - Data 3.1 Binary.
Chapter 2 Number Systems.
Presentation transcript:

Data Basics

Binary Number System Numeration systems are methods of representing numbers. All current number systems are positional in nature. In the two 3s represent different things because of their position: 30,000 and 30. People use the decimal system (probably because we have 10 fingers) which has 10 symbols, 0, 1, …, 9 Computers use the binary number system consisting of two digits, 0 and 1, because they can be implemented with switches being off or on. Switches are fast, reliable, and cheap.

Binary Numbers (continued) Binary numbers work just like decimal numbers (sort of) Decimal and binary represent the same values, just in different ways. Any whole number can be represented in either decimal or binary. Numbers can be converted from one system to the other. As users of computers we don’t need to do any of this, but it helps us understand some of the strange limitations that computers have. DO DEMO FOR CLASS.

Hexadecimal Number System Hexadecimal is a similar system that is often used by computer programmers and computer engineers. It is also used for conveying information such as MAC addresses. 00-1F-C AD is the MAC address of the computer in my office. Hex is just like binary and decimal (if we had 16 fingers) but it uses 16 symbols: 0, 1, … 9, A, B, …, F (a, b, … can be used in place of A, B, … MORE CLASS DEMOS.