Binary Lesson 1 Nybbles.

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.
Digital Circuit Why Digital Circuit? – Digital signals ( 0 and 1) are very easy to handle with electronic circuits only 2 states needed: Switch ON or OFF,
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.
Numbering Systems Decimal (Denary) base 10. Clumsy when dealing with computers. Other systems –Binary –Octal –Hexadecimal Convenient when dealing with.
Decimal Review ,00010,0001, Decimal ~ Base 10 number system 10 different numbers: 0, 1, 2, 3, 4, 5, 6, 7, 8,
Counting in The Binary System Base Two © RAM 2008.
Revision Introductory Lesson
Number Systems.
Step one: Convert the number you’re converting into a number between 1 and 10 by moving the decimal either to the left or to the right. Examples: 45,000.
Numbering Systems. CSCE 1062 Outline What is a Numbering System Review of decimal numbering system Binary representation range Hexadecimal numbering system.
©2010 Akula LLC, Jeremy R. Hertzberg, BS CMPE Binary Numbers Zeros and Ones
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.
Converting From decimal to Binary & Hexadecimal to Binary
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.
Hexadecimal Data Representation. Objectives  Know how the Hexadecimal counting system works  Be able to convert between denary, binary & hexadecimal.
Binary Lesson 10 Powers of 2. Base Ten The number 147 means The number 147 means 1 x x x x
IClicker Questions CNIT 201E Last revised
Discrete Mathematics Numbering 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 Arithmetic CPSC 101: Chp 2 John Lamertina.
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.
Binary Numbers Practice.
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.
Number Systems Decimal Can you write 12,045 in expanded form? Base? Allowable digits for each place?
Decimal Numbers.
Place Value/ Rounding Lesson #1.
Consider this number: , Ones (7 ones) Tens (no tens)
Octal to Decimal Decimal Octal Binary Hexadecimal.
Discrete Mathematics Numbering System.
Binary numbers: Week 7 Lesson 1
Counting in 7s
Converting Decimals to Fractions
Binary Lesson 1 Nybbles.
COUNTING IN BINARY Binary weightings 0 x x x x 8
Comparing Numbers.
Binary Lesson 1 Nybbles.
Number Systems Base 2, 10, 16.
Multiplying & Dividing by Powers of Ten
CS101 Learning Binary Learning Binary.
Binary Lesson 3 Hexadecimal
Binary Lesson 2 Bytes.
Binary Lesson 8a IPv6 Addresses: Hexadecimal
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
Starter Using the fingers on only one hand, what is the highest number you can count to? Rules: You must start at 1 You must count sequentially (i.e.
Binary Lesson 3 Hexadecimal
Counting
Counting
The Binary System.
Binary Lesson 4 Hexadecimal and Binary Practice
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.
Presentation transcript:

Binary Lesson 1 Nybbles

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

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

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

iClicker Questions Nybbles

What is 7 in binary? 10 100 1000 1101 0111 1 of 5

What is 101 in decimal? 1 2 5 6 7 2 of 5

Convert the decimal value 10 to binary: 2 1000 1010 3 of 5

Convert the binary value 10 to decimal: 2 1000 1010 4 of 5

Convert the binary value 1011 to decimal: 13 14 5 of 5