CISCO NETWORKING ACADEMY Chabot College ELEC 99.05 Binary Introduction.

Slides:



Advertisements
Similar presentations
Information Representation
Advertisements

Computer Codes Rohit Khokher. Computer Codes Data types NumericNonnumeric IntegerRealAlphabet A, B, C, …,Z a, b, c,…,z Digits 0,…,9 Special Characters.
Understanding Binary Basics
Information Processing Session 5B Binary Arithmetic Slide
Binary and Hexadecimal Numbers
1 The Information School of the University of Washington Nov 6fit more-digital © 2006 University of Washington Digital Information INFO/CSE 100,
1 12/08/03SW Abingdon and Witney College Binary Converting to and from decimal.
CISCO NETWORKING ACADEMY Chabot College ELEC 74A Hexadecimal Introduction.
Computer Systems 1 Fundamentals of Computing
© Maths Support Service 2007 Binary and Hexadecimal Numbers Next Slide AE98FD AE98FD.
Bits, Bytes, KiloBytes, MegaBytes, GigaBytes & TeraBytes.
Number Systems.
Bits & Bytes: How Computers Represent Data
Data Representation S2. This unit covers how the computer represents- Numbers Text Graphics Control.
CISCO NETWORKING ACADEMY Chabot College ELEC Addressing & Routing Foundation Concepts.
Computer Math CPS120: Data Representation. Representing Data The computer knows the type of data stored in a particular location from the context in which.
Binary Code.
CISCO NETWORKING ACADEMY Chabot College ELEC Subnet Review.
Bits & Bytes Created by Chris McAbee For AAMU AGB199 Extra Credit Created from information copied and pasted from
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 Systems CIT Network Math
Lecture Binary and Hexadecimal Numbers. How Machines Think Computers handle two types of information: –Instructions –Data The "words" of a machine language.
Number Representation. Representing numbers n Numbers are represented as successive powers of a base, or radix.
CMSC 104, Lecture 051 Binary / Hex Binary and Hex The number systems of Computer Science.
©Contrinex JDC PPT_XF_BinHexDecASCII Encoding information J.-D. Chatelain.
© 2010 Cisco Systems, Inc. All rights reserved. 1 Network Math.
1 3 Computing System Fundamentals 3.2 Computer Architecture.
Compsci Today’s topics l Binary Numbers  Brookshear l Slides from Prof. Marti Hearst of UC Berkeley SIMS l Upcoming  Networks Interactive.
EXPANDED AND STANDARD FORM. First, we need to work on place values; If we expand this out, we get.
Computer Science Binary. Binary Code Remember the power supply that is inside your computer and how it sends electricity to all of the components? That.
1 1 7-Dec-15 Binary Converting to and from decimal.
Computer Science and Software Engineering© 2014 Project Lead The Way, Inc. Bits and Bytes.
OFF = 0 ON = 1 = 63 BINARY system
Binary 101 Gads Hill School. Aim To strengthen understanding of how computers use the binary number system to store information.
Primitive Data Types 1 In PowerPoint, point at the speaker icon, then click the "Play" button.
Binary Decimal Hexadecimal
Number Systems. Topics  The Decimal Number System  The Binary Number System  Converting from Binary to Decimal  Converting from Decimal to Binary.
Understanding Computers
Binary a. express numbers in binary, binary-coded decimal (BCD), octal and hexadecimal;
Understanding Binary Understanding Computers. Understanding Computers L3 – Understanding Binary Learning Objectives All will Understand why all data is.
Programmable Logic Controller
Understanding binary Understanding Computers.
Chapter 3 - Binary Numbering System
Computer Maintenance Numbering Systems Trade & Industrial Education
Consider this number: , Ones (7 ones) Tens (no tens)
4,135,652 Place Value Hundred Thousands Ten Thousands Hundreds
BINARY CODE.
RFID - EN Encoding information Encoding information J.-D. Chatelain.
Binary Lesson 5 Classful IP Addresses
Principles of Computing – UFCFA Lecture-3
Dr. Clincy Professor of CS
Binary and Hexadecimal Numbers
4,135,652 Place Value Hundred Thousands Ten Thousands Hundreds
Binary Lesson 3 Hexadecimal
Binary Lesson 2 Bytes.
Binary Lesson 8a IPv6 Addresses: Hexadecimal
Binary Lesson 2 Bytes.
Binary Lesson 3 Hexadecimal
Binary Lesson 3 Hexadecimal
Data Binary Conversion.
Binary Lesson 2 Bytes.
Binary Lesson 8 IPv6 Addresses: Hexadecimal
Binary Lesson 3 Hexadecimal
How to Represent Numbers on a Computer
Binary Lesson 4 Hexadecimal and Binary Practice
Binary Lesson 4 Hexadecimal and Binary Practice
Lec 7 Network Layer: Logical Addressing
Chapter 3 - Binary Numbering System
Binary Lesson 7 Review of Binary and Hexadecimal
Our Number System.
Presentation transcript:

CISCO NETWORKING ACADEMY Chabot College ELEC Binary Introduction

CISCO NETWORKING ACADEMY Binary and Computing To make it easier to work with a computer’s states of “on” and “off,” we use a numbering system that only has two possible values. This numbering system is called “base 2,” or “binary.”

CISCO NETWORKING ACADEMY Binary Numbering System In the binary numbering system, each digit has two possible values: 0 or 1

CISCO NETWORKING ACADEMY One Bit Therefore, with 1 digit or “bit”, we can have two possible combinations: 1 bit: 2 1 = 2 values 0 1

CISCO NETWORKING ACADEMY Two Bits With 2 digits or “bits”, we can have four possible combinations: 2 bits: 2 2 = 4 values

CISCO NETWORKING ACADEMY Three Bits 3 bits: 2 3 = 8 possible values :

CISCO NETWORKING ACADEMY Bits 1 bit: 2 1 = 2 possible values 2 bits: 2 2 = 4 possible values 3 bits: 2 3 = 8 possible values 4 bits: 2 4 = 16 possible values 5 bits: 2 5 = ? 6 bits: 2 6 = ? 7 bits: 2 7 = ? 8 bits: 2 8 = ?

CISCO NETWORKING ACADEMY Binary Numbering System Each value is a binary digit, or bit for short Eight bits together make a unit called a byte. In IP addresses, bytes are called octets (group of eight).

CISCO NETWORKING ACADEMY Not exactly… Eight bits together make a unit called a byte, BUT… Seven bits grouped together are also, sometimes, referred to as a byte. Example: 7-bit ASCII characters. “Octet” is used to be unambiguous.

CISCO NETWORKING ACADEMY Special Binary Values BitsValuesUse/Signpost 42 4 = 16Hex numbers (0 - F) 72 7 = 128ASCII characters 8 (byte)2 8 = 256“octet”, extended ASCII = 1,024“K”, “kilo” thousand 16 (2 bytes)2 16 = 65,536 64“K” = 1,024K “meg” (2 10 x 2 10 ) million 24 (3 bytes)2 24 = 16,384K“16 megs”(2 4 x 2 10 x 2 10 ) “gig”(2 10 x 2 10 x 2 10 ) billion

CISCO NETWORKING ACADEMY Binary Numbering System In decimal, each place value is a power of ten. We read the number 2342 as two-thousand three-hundred forty-two

CISCO NETWORKING ACADEMY Binary Numbering System In binary, each place value is a power of two. The byte is equivalent to 207 in decimal

CISCO NETWORKING ACADEMY Practice Slide 124 ??? ??? ??

CISCO NETWORKING ACADEMY Binary Blitz Contest Gameplay: You are blue and the computer is red. Click START. A random target number from 1 to 255 will be displayed at the right. Use the mouse to toggle the blue zeros and ones until they are the binary equivalent of the decimal number target. Show your screen to the instructor for bonus credit when your score = 10. Double credit for score > 20. Get Binary Blitz free at