Bits and Bytes. Decimal Numbers 6,357 has four digits -base-10 (6 * 1000) + (3 * 100) + (5 * 10) + (7 * 1) = 6000 + 300 + 50 + 7 = 6357 (6 * 10^3) + (3.

Slides:



Advertisements
Similar presentations
How to Convert Decimal Numbers to Binary EXAMPLES.
Advertisements

Base 10 Denary Decimal
Binary number, Bits and Bytes and memory Sen Zhang.
Binary & Decimal numbers = 3* * *10 + 5*1 = 3* * * *10 0 Decimal system: Ten digits: 0,1,2,3,…,9 Example:
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.
Multiplying Decimals. Multiplying Decimals Notes Multiply as usual, ignoring the decimal points. Count how many total digits are to the right of the decimal.
Aloha Aloha What you see: What the computer sees: binary number columns binary number columns
Numbering Systems. CSCE 1062 Outline What is a Numbering System Review of decimal numbering system Binary representation range Hexadecimal numbering system.

Bits & Bytes Created by Chris McAbee For AAMU AGB199 Extra Credit Created from information copied and pasted from
The Wonders of Conversion. A number system is a system in which a number is represented. There are potential infinite number systems that can exist (there.
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 System. Number Systems Important Number systems – Decimal – Binary – Hexadecimal.
1 Press Ctrl-A ©G Dear 2010 – Not to be sold/Free to use Converting Bits and Bytes Stage 6 - Year 11 Applied Mathematic (Preliminary General 1)
Scientific Notation = = 10 x 10 = = 10 x 10 x 10 = 1000.
Working with 8-bit bytes and hexadecimal
THE BINARY NUMBER SYSTEM “There are only 10 types of people in this world: Those who understand BINARY and those who do not.”
Binary A double zero educational presentation. Binary Basics Binary is the language computers use Only 1’s and 0’s can be found in Binary Very large numbers.
Computer Programming 12 Mr. Jean February 5 th, 2014.
Exploring Computer Science – Lesson 2-5. Click to add text.
OFF = 0 ON = 1 = 63 BINARY system
Chapter 2 Binary Values and Number Systems Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in.
Arithmetic Chapter 4 Subject: Digital System Year: 2009.
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.
Number Systems Part 2. Counting in Binary DecimalBinary
Computer Maintenance Numbering Systems Copyright © Texas Education Agency, All rights reserved.1.
Starter Using two’s Complement form convert the following from Denary to Binary using 8 bits. Answer on mini whiteboard Using two’s.
Number Systems Decimal Can you write 12,045 in expanded form? Base? Allowable digits for each place?
Binary Numbers. Decimal vs Binary = 1001 = 101 = 10 1 = on = 0 = off = On and off.
WHAT IS BINARY? Binary is a number system that only uses two digits: 1 and 0. Any information that processed by a computer it is put into sequence of.
Binary & Decimal numbers
Computer Maintenance Numbering Systems Trade & Industrial Education
Consider this number: , Ones (7 ones) Tens (no tens)
Unit 18: Computational Thinking
Binary numbers: Week 7 Lesson 1
BINARY CODE.
RFID - EN Encoding information Encoding information J.-D. Chatelain.
Binary Lesson 1 Nybbles.
COUNTING IN BINARY Binary weightings 0 x x x x 8
Binary Code  
Representing Data How does a computer represent data?
Binary Lesson 1 Nybbles.
Number Systems Base 2, 10, 16.
Binary Lesson 1 Nybbles.
Binary Lesson 3 Hexadecimal
Binary Lesson 2 Bytes.
Binary Lesson 2 Bytes.
Topic 1: Data Representation
Binary Lesson 3 Hexadecimal
Binary Lesson 3 Hexadecimal
Data Binary Conversion.
Binary Lesson 2 Bytes.
Binary Lesson 3 Hexadecimal
How to Represent Numbers on a Computer
Binary Lesson 4 Hexadecimal and Binary Practice
COUNTING IN BINARY Binary weightings 0 x x x x 8
Chapter 2 Number Systems.
Chapter 2 Number Systems.
Binary Lesson 4 Hexadecimal and Binary Practice
Chapter 2 Number Systems.
The Understanding of Binary Math & Conversion
Binary Lesson 1 Nybbles.
Number Systems Today, I’ll be giving an introduction to:
Binary Lesson 7 Review of Binary and Hexadecimal
Lecture 36 – Unit 6 – Under the Hood Binary Encoding – Part 2
Counter Fundamentals Presented by :
Chapter 2 Number Systems.
1 1. Binary Basics Year 8 Unit 1 Bitmap Graphics.
Course Code 114 Introduction to Computer Science
Binary Lesson 1 Nybbles.
Presentation transcript:

Bits and Bytes

Decimal Numbers 6,357 has four digits -base-10 (6 * 1000) + (3 * 100) + (5 * 10) + (7 * 1) = = 6357 (6 * 10^3) + (3 * 10^2) + (5 * 10^1) + (7 * 10^0) = = 6357 Computers –base-2 –binary number system

bit = "Binary digIT" decimal digits have 10 possible values ranging from 0 to 9 bits have only two possible values: 0 and 1 binary number is composed of only 0s and 1s

Decimal Numbers Vs. Binary 6,357 (6 * 1000) + (3 * 100) + (5 * 10) + (7 * 1) = = 6357 (6 * 10^3) + (3 * 10^2) + (5 * 10^1) + (7 * 10^0) = = (1 * 2^3) + (0 * 2^2) + (1 * 2^1) + (1 * 2^0) = = 11

Counting in decimal and binary looks like this: 0 = 0 1 = 1 2 = 10 3 = 11 4 = = = = = = = = = = = = = = = = = 10100

Bits are rarely seen alone in computers They are almost always bundled together into 8-bit collections, and these collections are called bytes. Why are there 8 bits in a byte?

With 8 bits in a byte, you can represent 256 values ranging from 0 to = 0 1 = 1 2 = 10 3 = 11 4 = = = = = = = = = = = =

Write your name in Computer “talk”

Homework Write a 5 word sentence in Binary and bring back next week