Binary Lesson 4 Hexadecimal and Binary Practice

Slides:



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

Binary Lesson 3 Hexadecimal. Counting to 15 Base Base Base 16 Base Base Base 16 Two Ten (Hex) Two Ten (Hex)
1 3 Computing System Fundamentals 3.5 Data Representation.
IClicker Questions CNIT 201E Modified After 4.1.
CISCO NETWORKING ACADEMY Chabot College ELEC 74A Hexadecimal Introduction.
Data Storage Introduction to computer, 2nd semester, 2010/2011 Mr.Nael Aburas Faculty of Information Technology Islamic.
Number Systems.
Information & Communication Technology
How to ? Subnetting. Scenario How Many Networks? 2 How Many Network addresses are required? 2 Addresses Used: subnet mask
Binary Lesson 5.5 Usable Addresses Class A, B, and C.
Title NUMERIC SYSTEMS USED IN NETWORKING NUMERIC SYSTEMS USED IN NETWORKING.
1 Exercise: IPv4 subnetting. 2 Task 1 Given is an IP network with address : Divide this network into 8 subnets.
1 Pertemuan 2 Network Math. Discussion Topics Binary presentation of data Bits and bytes Base 10 number system Base 2 number system Converting decimal.
Number System. Number Systems Important Number systems – Decimal – Binary – Hexadecimal.
Converting From decimal to Binary & Hexadecimal to Binary
Saeed Darvish Pazoki – MCSE, CCNA IP Subnetting 1.
Octal to Decimal Hexadecimal DecimalOctal Binary.
Chapter 2 Bits, Data Types, and Operations. 2-2 Hexadecimal Notation It is often convenient to write binary (base-2) numbers as hexadecimal (base-16)
Working with 8-bit bytes and hexadecimal
Hexadecimal Data Representation. Objectives  Know how the Hexadecimal counting system works  Be able to convert between denary, binary & hexadecimal.
Binary Lesson 6.1 Classful Subnetting 2
Binary Lesson 10 Powers of 2. Base Ten The number 147 means The number 147 means 1 x x x x
Binary01.ppt Decimal Decimal: Base 10 means 10 Unique numerical digits ,00010,000 Weight Positions 3,
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:
Arithmetic Chapter 4 Subject: Digital System Year: 2009.
Number Systems. Topics  The Decimal Number System  The Binary Number System  Converting from Binary to Decimal  Converting from Decimal to Binary.
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.
After 6.1. What is 69 in binary? A B C D E of 6.
CMSC 1041 Binary / Hex Binary and Hex The number systems of Computer Science.
Binary Lesson 4 Hexadecimal and Binary Practice Modified for IPv6.
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.
First Foray into Programming (the hard way). A reminder from last lesson: A machine code instruction has two parts:  Op-code  Operand An instruction.
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.
Decimal Numbers.
Computer Maintenance Numbering Systems Trade & Industrial Education
Consider this number: , Ones (7 ones) Tens (no tens)
Octal to Decimal Decimal Octal Binary Hexadecimal.
Discrete Mathematics Numbering System.
Unit 18: Computational Thinking
Binary Lesson 1 Nybbles.
Binary Lesson 5 Classful IP Addresses
Data Storage Introduction to computer, 2nd semester, 2010/2011
Binary Quiz UIN: ____________________
Binary Lesson 1 Nybbles.
Number Systems Base 2, 10, 16.
Binary Lesson 1 Nybbles.
Creating Subnets – Network Requirements
Binary Lesson 3 Hexadecimal
Binary Lesson 2 Bytes.
Binary Lesson 5.5 Usable Addresses Class A, B, and C
Binary Lesson 8a IPv6 Addresses: Hexadecimal
Binary, Octal and Hex Numbers Copyright Thaddeus Konar
Binary Lesson 6 Classful Subnetting
Binary Lesson 2 Bytes.
Binary Lesson 3 Hexadecimal
Binary Lesson 3 Hexadecimal
Binary Lesson 2 Bytes.
Binary Lesson 8 Review of Classful Addressing and Subnetting
Binary Lesson 8 IPv6 Addresses: Hexadecimal
Binary Lesson 3 Hexadecimal
Binary Lesson 4 Hexadecimal and Binary Practice
Binary Lesson 1 Nybbles.
Binary Lesson 7 Review of Binary and Hexadecimal
Binary Lesson 1 Nybbles.
Presentation transcript:

Binary Lesson 4 Hexadecimal and Binary Practice

Counting to 15 Base Base Base 16 Base Base Base 16 Two Ten (Hex) Two Ten (Hex) 0 0 0 1000 8 8 1 1 1 1001 9 9 10 2 2 1010 10 A 11 3 3 1011 11 B 100 4 4 1100 12 C 101 5 5 1101 13 D 110 6 6 1110 14 E 111 7 7 1111 15 F 2

1 0 0 1 Four Bits Make a Nybble 8s 4s 2s 1s A nybble can be represented by one hexadecimal digit Values from 0 to 15, or 0 to F 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 One nybble: 0 through F One nybble: 0 through F

Two hexadecimal digits make a byte 1 0 0 1 1 0 0 1 So this number is $99 = 9*16 + 9 = 144+9 = 153 One nybble: 0 through F # of 16s One nybble: 0 through F # of 1s

Binary iClicker Questions

What is 16 in hexadecimal? $0A $A6 $0F $10 $16 1 of 11

What is $A0 in decimal? 160 100 10 255 90 2 of 11

What is 64 in hexadecimal? $20 $30 $34 $40 $44 3 of 11

What is 252 in hexadecimal? $F0 $F8 $FA $FC $FE 4 of 11

Convert this binary number to hexadecimal: 01101101 $23 $63 $67 $69 $6B 5 of 11

What is the highlighted IP Address? 127.0.0.1 120.168.0.139 192.168.0.101 192.168.0.91 Something else 6 of 11

Convert this IP address to hexadecimal: 127.0.0.1 80 00 00 01 81 00 00 01 79 00 00 01 7F 00 00 01 7D 00 00 01 7 of 11

Convert this IP address to binary: 127.0.0.1 11111111 00000000 00000000 00000001 01111111 00000000 00000000 00000001 00111111 00000000 00000000 00000001 00011111 00000000 00000000 00000001 00001111 00000000 00000000 00000001 8 of 11

Convert this IP address to binary: 147.144.0.1 11111111 00000000 00000000 00000001 01111111 00000000 00000000 00000001 10010111 10010000 00000000 00000001 10010011 10010000 00000000 00000001 10010111 10110000 00000000 00000001 9 of 11

Convert this IP address to binary: 147.255.255.254 10010111 00000000 00000000 00000001 10010011 11111111 00000000 00000001 10010111 11111111 11111111 11111111 10010011 11111111 11111111 11111110 10010011 11111111 11111111 11111101 10 of 11

Convert this subnet mask to binary: 255.255.255.0 11111111 11111111 11111111 11111111 11111111 00000000 00000000 00000000 01111111 01111111 01111111 00000000 11111111 11111111 11111111 00000001 11111111 11111111 11111111 00000000 11 of 11