Binary Lesson 2 Bytes.

Slides:



Advertisements
Similar presentations
Binary Lesson 3 Hexadecimal. Counting to 15 Base Base Base 16 Base Base Base 16 Two Ten (Hex) Two Ten (Hex)
Advertisements

Lesson 2-1 Example Example 2 Write seven hundred fourteen in standard form. 1.There are 7 hundreds in the number.
Binary & Decimal numbers = 3* * *10 + 5*1 = 3* * * *10 0 Decimal system: Ten digits: 0,1,2,3,…,9 Example:
Answer to exercises(2) P74, 2.1 (a) =6B 16 (b) = (d) = (f) F3A5 8 =
Objective - To read, write and identify the values of whole numbers.
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.
 A binary number is a number that includes only ones and zeroes.  The number could be of any length  The following are all examples of binary numbers.
Counting in The Binary System Base Two © RAM 2008.
Revision Introductory Lesson
Counting and Number Patterns to 120
©2010 Akula LLC, Jeremy R. Hertzberg, BS CMPE Binary Numbers Zeros and Ones
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.
Binary Lesson 10 Powers of 2. Base Ten The number 147 means The number 147 means 1 x x x x
1 1 7-Dec-15 Binary Converting to and from decimal.
IClicker Questions CNIT 201E Last revised
Binary Lesson 5 Counting. Powers of 2 One bit has 2 possible values (2^1) One bit has 2 possible values (2^1) 0 or 1 0 or 1 Two bits have 4 possible values.
Teaching Subnetting Sam Bowne City College San Francisco Web: samsclass.info
CLICK THE NUMBERS IN SEQUENCE
Binary Lesson 1 Nybbles. Base Ten Normal Numbers Normal Numbers Each place has one of these values: Each place has one of these values:
ROM CPU CMOS HARD DRIVERAM. POWER on off 1 bit 8 bits = 1 byte.
Binary Lesson 4 Hexadecimal and Binary Practice Modified for IPv6.
IClicker Questions CNIT 201E. After 3.2 What OSI Model Layer performs encryption? A.Application B.Presentation C.Session D.Transport E.Some other layer.
Binary Lesson 4a Hexadecimal and Binary Practice2.
Binary & Decimal numbers
Decimal Numbers.
Consider this number: , Ones (7 ones) Tens (no tens)
Exploring Computer Science – Lesson 2-5
Discrete Mathematics Numbering System.
Flats Rods Units.
Binary numbers: Week 7 Lesson 1
Counting in 7s
Binary Lesson 1 Nybbles.
COUNTING IN BINARY Binary weightings 0 x x x x 8
Binary Lesson 5 Classful IP Addresses
Binary Code  
Comparing Numbers.
Binary Lesson 1 Nybbles.
Binary Lesson 1 Nybbles.
Binary Lesson 3 Hexadecimal
Binary Lesson 2 Bytes.
Binary Lesson 8a IPv6 Addresses: Hexadecimal
Binary Numbers? Foley SED 514 Section /2/2019.
Binary Lesson 3 Hexadecimal
Decimal Place Value.
NUMBERS one two three four five six seven eight
Binary Lesson 3 Hexadecimal
Binary Lesson 2 Bytes.
Counting
Binary Lesson 8 IPv6 Addresses: Hexadecimal
Binary Lesson 3 Hexadecimal
Counting
Counting
Binary Lesson 4 Hexadecimal and Binary Practice
Place Value.
Thousands Hundreds Tens Ones l l l l l l l l l
COUNTING IN BINARY Binary weightings 0 x x x x 8
Year 2 Spring Term Week 2 Lesson 1
Year 2 Spring Term Week 2 Lesson 1
Binary Lesson 4 Hexadecimal and Binary Practice
CLICK THE NUMBERS IN SEQUENCE
Thousands Hundreds Tens Ones l l l l l l l l l
Binary Lesson 1 Nybbles.
Counting to 100 Counting by ones
Comparing Numbers.
CLICK THE NUMBERS IN SEQUENCE
Number Systems Today, I’ll be giving an introduction to:
Counting
Binary Lesson 7 Review of Binary and Hexadecimal
Binary Lesson 1 Nybbles.
+/- Numbers Year 3-4 – Addition and subtraction of hundreds within
Presentation transcript:

Binary Lesson 2 Bytes

Base Ten Normal Numbers Each place has one of these values: 0 1 2 3 4 5 6 7 8 9 147 = 1*100 + 4*10 + 7 Or 1*10^2 + 4*10^1 + 7*10^0

Base Ten 1 4 7 Hundreds place Number of hundreds 10^2 Ones place Number of ones 10^0 Tens place Number of tens 10^1

Base Two Binary Numbers Each place has one of these values: 0 1 11 = 1 * 2 + 1 = 3 Or 1*2^1 + 2^0

Base Two 1 0 1 Fours place Number of fours 2^2 Ones place Number of ones 2^0 Twos place Number of twos 2^1

Counting to 7 Base Two Base Ten 0 0 1 1 10 2 11 3 100 4 101 5 110 6 0 0 1 1 10 2 11 3 100 4 101 5 110 6 111 7

Counting to 15 Base Two Base Ten Base Two Base Ten 0 0 1000 8 0 0 1000 8 1 1 1001 9 10 2 1010 10 11 3 1011 11 100 4 1100 12 101 5 1101 13 110 6 1110 14 111 7 1111 15 7

Four Bits Make a Nybble 1 0 0 1 8s 4s 2s 1s

1 0 0 1 1 0 0 1 Eight Bits Make a Byte 8s 8s 8s 8s 4s 4s 4s 4s 2s 2s 1 0 0 1 1 0 0 1 So this number is 128 + 16 + 8 + 1 = 153 128s 64s 64s 32s 32s 32s 16s 16s 16s 8s 8s 8s 8s 4s 4s 4s 4s 2s 2s 2s 1s 1s