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

How to Convert Decimal Numbers to Binary EXAMPLES.
Binary & Decimal numbers = 3* * *10 + 5*1 = 3* * * *10 0 Decimal system: Ten digits: 0,1,2,3,…,9 Example:
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
Number Systems.
Data Representation S2. This unit covers how the computer represents- Numbers Text Graphics Control.
©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.
Lesson 4-7 Example Example 1 Find 4.32 × Multiply the factors, ignoring the decimal points for now. 432 × 6 = 2592.
Visualizing Decimal and Binary
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
OFF = 0 ON = 1 = 63 BINARY system
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
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.
Arithmetic Chapter 4 Subject: Digital System Year: 2009.
Binary Lesson 4 Hexadecimal and Binary Practice Modified for IPv6.
Number systems Visualizing Decimal and Binary. We count in base 10 because people started by counting on their fingers Base 10 is a number system that.
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.
Place Value/ Rounding Lesson #1.
Consider this number: , Ones (7 ones) Tens (no tens)
Exploring Computer Science – Lesson 2-5
Discrete Mathematics Numbering System.
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  
Representing Data How does a computer represent data?
Comparing Numbers.
Binary Lesson 1 Nybbles.
Binary Lesson 1 Nybbles.
Multiplying & Dividing by Powers of Ten
Binary Lesson 3 Hexadecimal
Binary Lesson 8a IPv6 Addresses: Hexadecimal
Binary Numbers? Foley SED 514 Section /2/2019.
Binary Lesson 2 Bytes.
Binary Lesson 3 Hexadecimal
Decimal Place Value.
Binary Lesson 3 Hexadecimal
Binary Lesson 2 Bytes.
Counting
Binary Lesson 8 IPv6 Addresses: Hexadecimal
Binary Lesson 3 Hexadecimal
Counting
How to Represent Numbers on a Computer
Counting
Binary Lesson 4 Hexadecimal and Binary Practice
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.
COUNTING IN BINARY Binary weightings 0 x x x x 8
Binary Lesson 4 Hexadecimal and Binary Practice
Binary Lesson 1 Nybbles.
Counting to 100 Counting by ones
Comparing Numbers.
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

Binary iClicker Questions

What is 6 in binary? 00111111 00011110 00000111 00000110 00000011 1 of 6

What is 15 in binary? 00111111 00011111 00001111 00000111 00000011 2 of 6

What is 32 in binary? 00011010 00100000 01000000 10000000 00011111 3 of 6

What is 60 in binary? 11111111 10000011 00101111 00111101 00111011 4 of 6

What is 01000000 in decimal? 10 100 128 64 32 5 of 6

What is 01111111 in decimal? 87 109 111 127 255 6 of 6