Mastering Binary Math

Size: px
Start display at page:

Download "Mastering Binary Math"

Transcription

1 Cisco certification candidates, from the CCNA to the CCIE, must master binary math. This includes basic conversions, such as binary-to-decimal and decimal-to-binary, as well as more advanced scenarios involving subnetting and VLSM. There s another conversion that might rear its ugly head on your Cisco exam, though, and that involves hexadecimal numbering. Newcomers to hexadecimal numbering are often confused as to how a letter of the alphabet can possibly represent a number. Worse, they may be intimidated after all, there must be some incredibly complicated formula involved with representing the decimal 11 with the letter b, right? Wrong. The numbering system we use every day, decimal, concerns itself with units of ten. Although we rarely stop to think of it this way, if you read a decimal number from right to left, the number indicates how many units of one, ten, and one hundred we have. That is, the number 15 is five units of one and one unit of ten. The number 289 is nine units of one, eight units of ten, and two units of one hundred. Simple enough! Units Of 100 Units Of 10 Units Of 1 The decimal The decimal Hex numbers are read much the same way, except the units here are units of 16. The number 15 in hex is read as having five units of one and one unit of sixteen. The number 289 in hex is nine units of one, eight units of sixteen, and two units of 256 (16 x 16). Units Of 256 Units Of 16 Units Of 1 The hex numeral The hex numeral Since hex uses units of sixteen, how can we possibly represent a value of 10, 11, 12, 13, 14, or 15? We do so with letters. The decimal 10 is represented in hex with the letter a ; the decimal 11 with b ; the decimal 12 with c, 13 with d, 14 with e, and finally, 15 with f. (Remember that a MAC address of ffff.ffff.ffff is a Layer 2 broadcast.) Practice Your Conversions for Exam Success Now that you know where the letters fall into place in the hexadecimal numbering world, you ll have little trouble converting hex to decimal and decimal to hex if you practice. How would you convert the decimal 27 to hex? You can see that there is one unit of 16 in this decimal; that leaves 11 units of one. This is represented in hex with 1b one unit of sixteen, 11 units of one. Work From Left To Right To Perform Decimal Hexadecimal Conversions. Units of 256 Units of 16 Units of 1 Hexadecimal Value Decimal Number B (11) 1b Chris Bryant, CCIE #12933 Page 1

2 Converting the decimal 322 to hex is no problem. There is one unit of 256; that leaves 66. There are four units of 16 in 66; that leaves 2, or two units of one. The hex equivalent of the decimal 322 is the hex figure 142 one unit of 256, four units of 32, and 2 units of 2. Units of 256 Units of 16 Units of 1 Hexadecimal Value Decimal Number Hex-to-decimal conversions are even simpler. Given the hex number 144, what is the decimal equivalent? We have one unit of 256, four units of 16, and four units of 4. This gives us the decimal figure 324. Units of 256 Units of 16 Units of 1 Decimal Value Hexadecimal Number = 324 What about the hex figure c2? We now know that the letter c represents the decimal number 12. This means we have 12 units of 16, and two units of 2. This gives us the decimal figure 194. Units of 256 Units of 16 Units of 1 Decimal Value Hexadecimal Number c = 194 Tips for Exam Day Practice your binary and hexadecimal conversions over and over again before you take your CCNA exams. Binary math questions come in many different forms; make sure you have practiced all of them before exam day. The number one reason CCNA candidates fail their exam is that they re not prepared for the different types of binary math questions they re going to be asked, and that they aren t ready for hexadecimal questions at all. As you can see, hexadecimal conversions are actually simple. You have to practice them, though! You don t have time to learn how to do in on exam day. You ve got to be ready before you go into the exam room, and the only way to be ready is a lot of practice. Finally, make sure you read the question carefully. You ve got hex, decimal, and binary numbers to concern yourself with on your CCNA and CCNP exams. Make sure you give Cisco the answer in the format they re looking for. I have written 20 practice questions that will help you practice your hexadecimal conversion skills. Once you practice with these questions, and know exactly how each answer was arrived at, you ll have no problem with hexadecimal conversions on your Cisco exams. Best of luck! To your success, Chris Bryant, CCIE #12933 Chris Bryant, CCIE #12933 Page 2

3 1. Convert the following hexadecimal number to decimal: 1c 2. Convert the following hexadecimal number to decimal: f1 3. Convert the following hexadecimal number to decimal: 2a9 4. Convert the following hexadecimal number to decimal: 14b 5. Convert the following hexadecimal number to decimal: 3e4 6. Convert the following decimal number to hexadecimal: Convert the following decimal number to hexadecimal: Convert the following decimal number to hexadecimal: Convert the following decimal number to hexadecimal: Convert the following decimal number to hexadecimal: Convert the following hex number to binary: Convert the following hex number to binary: Convert the following hex number to binary: a9 14. Convert the following hex number to binary: 3c 15. Convert the following hex number to binary: Convert the following binary string to hex: Convert the following binary string to hex: Convert the following binary string to hex: Convert the following binary string to hex: Convert the following binary string to hex: Answers begin on the next page. No peeking! Chris Bryant, CCIE #12933 Page 3

4 Before we go through the answers and how they were achieved, let's review the meaning of letters in hexadecimal numbering: A = 10, B = 11, C = 12, D = 13, E = 14, F = 15. (And remember that ffff.ffff.ffff is a Layer 2 broadcast!) Conversions involving hexadecimal numbers will use this chart: 1. Convert the following hexadecimal number to decimal: 1c 1 c There is one unit of 16 and twelve units of = Convert the following hexadecimal number to decimal: f1 There are fifteen units of 16 and 1 unit of = 241 f 1 3. Convert the following hexadecimal number to decimal: 2a9 2 a 9 There are two units of 256, ten units of 16, and nine units of = 681 Chris Bryant, CCIE #12933 Page 4

5 4. Convert the following hexadecimal number to decimal: 14b 1 4 b There is one unit of 256, four units of 16, and 11 units of = Convert the following hexadecimal number to decimal: 3e4 3 e 4 There are three units of 256, fourteen units of 16, and four units of = Convert the following decimal to hexadecimal: 13 When converting decimal to hex, work with the same chart from left to right. Are there any units of 256 in the decimal 13? No. 0 Are there any units of 16 in the decimal 13? No. 0 0 Are there any units of 1 in the decimal 13? Sure. Thirteen of them. Remember how we express the number "13" with a single hex character? 0 0 d The answer is "d". It's not necessary to have any leading zeroes when expressing hex value. 7. Convert the following decimal to hexadecimal: 784 Are there any units of 256 in the decimal 784? Yes, three of them, for a total of 768. Place a "3" in the 256 slot, and subtract 768 from Chris Bryant, CCIE #12933 Page 5

6 = 16 Obviously, there's one unit of 16 in 16. Since there is no remainder, we can place a "0" in the remaining slots The final result is the hex number "310". 8. Convert the following decimal to hexadecimal: 419 Are there any units of 256 in the decimal 419? Yes, one, with a remainder of Are there any units of 16 in the decimal 163? Yes, ten of them, with a remainder of three. 1 a Three units of one take care of the remainder, and the hex number "1a3" is the answer. 1 a 3 9. Convert the following decimal to hexadecimal: 1903 Are there any units of 256 in the decimal 1903? Yes, seven of them, totaling This leaves a remainder of Are there any units of 16 in the decimal 111? Yes, six of them, with a remainder of By using the letter "f" to represent 15 units of 1, the final answer "76f" is achieved. 7 6 f Chris Bryant, CCIE #12933 Page 6

7 10. Convert the following decimal to hexadecimal: 345 Are there any units of 256 in 345? Sure, one, with a remainder of Are there any units of 16 in 89? Yes, five of them, with a remainder of Nine units of nine give us the hex number "159" Convert the following hex number to binary: 42 First, convert the hex number to decimal. We know "42" in hex means we have four units of 16 and two units of 1. Since = 66, we have our decimal. Now we've got to convert that decimal into binary. Here's our chart showing how to convert the decimal 66 into binary: The correct answer: Convert the following hex number to binary: 12 First, convert the hex number to decimal. The hex number "12" indicates one unit of sixteen and two units of one; in decimal, this is 18. Now to convert that decimal into binary. Use the same chart we used in Question 11: The correct answer: Chris Bryant, CCIE #12933 Page 7

8 13. Convert the following hex number to binary: a9 First, convert the hex number to decimal. Since "a" equals 10 in hex, we have 10 units of 16 and nine units of = 169 Now convert the decimal 169 to binary: The correct answer: Convert the following hex number to binary: 3c First, convert the hex number to decimal. We have three units of 16 and 12 units of 1 (c = 12), giving us a total of 60 ( ). Convert the decimal 60 into binary: The correct answer: Convert the following hex number to binary: 74 First, convert the hex number to decimal. We have seven units of 16 and four units of 1, resulting in the decimal 116 ( ). Convert the decimal 116 into binary: The correct answer: The next five questions dealt with converting binary to hex. We're going to use much the same method in solving these questions, but this point bears repeating: Make sure to answer the question in the format that Cisco is asking for on your exams. Chris Bryant, CCIE #12933 Page 8

9 16. Convert the following binary string to hex: First, we'll convert the binary string to decimal: Decimal To finish answering the question, convert the decimal 51 to hex. Are there any units of 256 in the decimal 51? No. Are there any units of 16 in the decimal 51? Yes, three, for a total of 48 and a remainder of three. Three units of one give us the hex number "33" Convert the following binary string to hex: First, we'll convert the binary string to decimal: Decimal Now convert the decimal 207 to hex. Are there any units of 256 in the decimal 207? No. Are there any units of 16 in the decimal 207? Yes, twelve of them, for a total of 192 and a remainder of 15. Twelve is represented in hex with the letter "c". Fifteen units of one are expressed with the letter "f", giving us a hex number of "cf". 0 c f 18. Convert the following binary string to hex: First, convert the binary string to decimal: Decimal Now convert the decimal 93 to hex. There are no units of 256, obviously. How many units of 16 are there? Five, for a total of 80 and a remainder of 13. We express the number 13 in hex with the letter "d". The final result is the hex number "5d". 0 5 d 19. Convert the following binary string to hex: Chris Bryant, CCIE #12933 Page 9

10 As always, convert the binary string to decimal first: Decimal Now convert the decimal 157 to hex. There are no units of 256. How many units of 16 are there in the decimal 157? Nine, for a total of 144 and a remainder of 13. You know to express the number 13 in hex with the letter "d", resulting in a hex number of 9d". 0 9 d 20. Convert the following binary string to hex: First, convert the binary string to decimal: Decimal Now convert the decimal 213 to hex. No units of 256, but how many of 16? Thirteen of them, with a total of 208 and a remainder of 5. Again, the number 13 in hex is represented with the letter "d", and the five units of one give us the hex number "d5". 0 d 5 Chris Bryant, CCIE #12933 Page 10

NUMERIC SYSTEMS USED IN NETWORKING

NUMERIC SYSTEMS USED IN NETWORKING NUMERIC SYSTEMS USED IN NETWORKING Decimal - Binary - Hexadecimal Table ASCII Code 128 64 32 16 8 4 2 1 The Letter A 0 1 0 0 0 0 0 1 Data Units Base 10 Numbering System Base 2 Numbering System Decimal

More information

First the Basics Binary Arithmetic

First the Basics Binary Arithmetic www.preplogic.com -00-4-679 First the Basics Binary Arithmetic If you understand how binary numbers work, you can skip this section and go to the next. But, if you don t, you need to spend a bit of time

More information

Binary, Hexadecimal and Octal number system

Binary, Hexadecimal and Octal number system Binary, Hexadecimal and Octal number system Binary, hexadecimal, and octal refer to different number systems. The one that we typically use is called decimal. These number systems refer to the number of

More information

Lecture 1: Digital Systems and Number Systems

Lecture 1: Digital Systems and Number Systems Lecture 1: Digital Systems and Number Systems Matthew Shuman September 26th, 2012 The Digital Abstraction 1.3 in Text Analog Systems Analog systems are continuous. Look at the analog clock in figure 1.

More information

Number Bases LESSON TWO. Computer Science. By John Owen

Number Bases LESSON TWO. Computer Science. By John Owen Number Bases LESSON TWO By John Owen Computer Science Objective In the last lesson you learned about different Number Bases used by the computer, which were Base Two binary Base Eight octal Base Sixteen

More information

Chapter 8 Patterns. Examples: a, b, c,, x, y, z

Chapter 8 Patterns. Examples: a, b, c,, x, y, z Chapter 8 Patterns Alegbra is a way of expressing mathematical ideas that use variables, constants, numerical coefficients, and mathematical operations. Variable is a letter that represents an unknown

More information

Objective 1.02 Understand Numbering Systems

Objective 1.02 Understand Numbering Systems Objective.0 Understand Numbering Systems C O M P U T E R P R O G R A M M I N G I Number Systems Number systems we will talk about: Decimal (Base 0 ) Binary (Base ) Hexadecimal (Base 6 ) Decimal The number

More information

Excerpt from "Art of Problem Solving Volume 1: the Basics" 2014 AoPS Inc.

Excerpt from Art of Problem Solving Volume 1: the Basics 2014 AoPS Inc. Chapter 5 Using the Integers In spite of their being a rather restricted class of numbers, the integers have a lot of interesting properties and uses. Math which involves the properties of integers is

More information

Subtraction Understand Subtraction on a Number Line Using a number line let s demonstrate the subtraction process using the problem 7 5.

Subtraction Understand Subtraction on a Number Line Using a number line let s demonstrate the subtraction process using the problem 7 5. Objective 1 Subtraction Understand Subtraction on a Number Line Using a number line let s demonstrate the subtraction process using the problem 7 5. -7-6 -5-4 -3-2 -1 0 1 2 3 4 5 6 7 Using the number line

More information

Conversion Between Number Bases

Conversion Between Number Bases Conversion Between Number Bases MATH 100 Survey of Mathematical Ideas J. Robert Buchanan Department of Mathematics Summer 2018 General Number Bases Bases other than 10 are sometimes used in numeration

More information

MathWorks MATLAB download & installation instructions

MathWorks MATLAB download & installation instructions MathWorks MATLAB download & installation instructions 1. Get the software from http://sts.fullerton.edu/software/matlab by clicking on the Get MATLAB Software link. Login with your CSUF Portal username

More information

4 + 4 = = 1 5 x 2 = 10

4 + 4 = = 1 5 x 2 = 10 Beginning Multiplication Ask your child... "Have you ever seen a multiplication problem?" Explain: "Instead of a plus ( + ) sign or a minus ( - ) sign a multiplication sign ( x ) is used." Have child to

More information

Number Systems Using and Converting Between Decimal, Binary, Octal and Hexadecimal Number Systems

Number Systems Using and Converting Between Decimal, Binary, Octal and Hexadecimal Number Systems Number Systems Using and Converting Between Decimal, Binary, Octal and Hexadecimal Number Systems In everyday life, we humans most often count using decimal or base-10 numbers. In computer science, it

More information

How & Why We Subnet Lab Workbook

How & Why We Subnet Lab Workbook i How & Why We Subnet Lab Workbook ii CertificationKits.com How & Why We Subnet Workbook Copyright 2013 CertificationKits LLC All rights reserved. No part of this book maybe be reproduced or transmitted

More information

Computer Number Systems Supplement

Computer Number Systems Supplement Computer Number Systems Supplement Dr. Ken Hoganson, All Rights Reserved. SUPPLEMENT CONTENTS S.1 Decimal System: Powers-of-the-Base 2 S.2 Converting to Binary: Division/Remainder Algorithm. 3 S.3 Binary

More information

Memory Addressing, Binary, and Hexadecimal Review

Memory Addressing, Binary, and Hexadecimal Review C++ By A EXAMPLE Memory Addressing, Binary, and Hexadecimal Review You do not have to understand the concepts in this appendix to become well-versed in C++. You can master C++, however, only if you spend

More information

MATH 104B OCTAL, BINARY, AND HEXADECIMALS NUMBERS

MATH 104B OCTAL, BINARY, AND HEXADECIMALS NUMBERS MATH 104B OCTAL, BINARY, AND HEXADECIMALS NUMBERS A: Review: Decimal or Base Ten Numbers When we see a number like 2,578 we know the 2 counts for more than the 7, even though 7 is a larger number than

More information

Digital codes. Resources and methods for learning about these subjects (list a few here, in preparation for your research):

Digital codes. Resources and methods for learning about these subjects (list a few here, in preparation for your research): Digital codes This worksheet and all related files are licensed under the Creative Commons Attribution License, version 1.0. To view a copy of this license, visit http://creativecommons.org/licenses/by/1.0/,

More information

Section 1.1 Patterns in Division

Section 1.1 Patterns in Division Section 1.1 Patterns in Division Divisibility refers to whether or not a number is divisible by another number. If a number divides evenly into another number (no remainder), then it is divisible by that

More information

But I know what most of you will do: use a calculator to convert; that's fine, IF you understand the theory.

But I know what most of you will do: use a calculator to convert; that's fine, IF you understand the theory. Numbers After you have read this, the next section will show how to use a This and other videos related to numbers and colors are available on the class web site. Why are there different numbering systems?

More information

12 Advanced IP Addressing

12 Advanced IP Addressing 12 Advanced IP Addressing CERTIFICATION OBJECTIVES 12.01 Variable-Length Subnet Masking 12.02 Route Summarization Q&A Two-Minute Drill Self Test 2 Chapter 12: Advanced IP Addressing In Chapter 11, you

More information

Binary the Digital Language

Binary the Digital Language College of DuPage DigitalCommons@C.O.D. Computer and Internetworking Technologies (CIT) Scholarship Computer Science 7-1-2012 Binary the Digital Language Clyde Cox College of DuPage, coxclyde@cod.edu Follow

More information

Step 1 The number name given in the question is five and sixty-eight-hundredths. We know that

Step 1 The number name given in the question is five and sixty-eight-hundredths. We know that Answers (1) 5.68 The number name given in the question is five and sixty-eight-hundredths. We know that hundredths can be represented as 1. So, we can write five and sixty-eight-hundredths as 5 and 68

More information

Slide Set 1. for ENEL 339 Fall 2014 Lecture Section 02. Steve Norman, PhD, PEng

Slide Set 1. for ENEL 339 Fall 2014 Lecture Section 02. Steve Norman, PhD, PEng Slide Set 1 for ENEL 339 Fall 2014 Lecture Section 02 Steve Norman, PhD, PEng Electrical & Computer Engineering Schulich School of Engineering University of Calgary Fall Term, 2014 ENEL 353 F14 Section

More information

Chapter 8: Subnetting IP Networks

Chapter 8: Subnetting IP Networks Chapter 8: Subnetting IP Networks Designing, implementing and managing an effective IP addressing plan ensures that networks can operate effectively and efficiently. This is especially true as the number

More information

Formatting for TLM - Part I

Formatting for TLM - Part I TLM Module A01 Formatting for TLM - Part I Copyright This publication The Northern Alberta Institute of Technology 2002. All Rights Reserved. LAST REVISED Oct., 2008 Formatting for TLM - Part I Statement

More information

Converting between Percents, Decimals, and Fractions

Converting between Percents, Decimals, and Fractions Section. PRE-ACTIVITY PREPARATION Converting between Percents, Decimals, and Fractions Think about how often you have heard, read, or used the term percent (%) in its many everyday applications: The sales

More information

Primary Source Verification. How to Apply

Primary Source Verification. How to Apply Primary Source Verification Dubai Corporation for Ambulance Services (DCAS) How to Apply A Step By Step Guide for Completing Your Application If you are a new applicant, follow the instructions from step

More information

Appendix 2 Number Representations

Appendix 2 Number Representations Appendix 2 Number Representations There are many different ways to represent whole numbers. While we are comfortable counting in decimal (0,1,2,3,4,5,6,7,8,9,10,11,12, ), that is only one set of names

More information

Primary Source Verification. How to Apply

Primary Source Verification. How to Apply Primary Source Verification NASBA International Evaluation Services How to Apply A Step By Step Guide for Completing Your Application Step One Visit the National Association of State Boards of Accountancy

More information

COUNTING AND CONVERTING

COUNTING AND CONVERTING COUNTING AND CONVERTING The base of each number system is also called the radix. The radix of a decimal number is ten, and the radix of binary is two. The radix determines how many different symbols are

More information

Note: This case study utilizes Packet Tracer. Please see the Chapter 4 Packet Tracer file located in Supplemental Materials.

Note: This case study utilizes Packet Tracer. Please see the Chapter 4 Packet Tracer file located in Supplemental Materials. Part 1 Variable Length Subnet Mask (VLSM) Note: This case study utilizes Packet Tracer Please see the Chapter 4 Packet Tracer file located in Supplemental Materials An organization has been assigned the

More information

17. [Exploring Numbers]

17. [Exploring Numbers] . [Exploring Numbers] Skill. Comparing whole numbers. Compare the size of the digits in the same place, one at a time. Work from left to right across each number. Q. Which number is the A ) 06 B ) 60 C

More information

Net Masks and IP Addresses

Net Masks and IP Addresses Net Masks and IP Addresses Professor Don Colton Brigham Young University Hawaii 1 Introduction IPv4 is currently the main addressing method on the Internet. Students who plan to use networking skills in

More information

UoK MIS USER MANUAL: STUDENTS

UoK MIS USER MANUAL: STUDENTS UoK MIS USER MANUAL: STUDENTS PART I: REGISTRATION I.I EDITING AND CONFIRMING INFORMATION (UNDERGRADUATE CONTINUING STUDENT) 1. Step one: Go to UoK website (www.uok.ac.rw) / click Online system/uok MIS

More information

Math 6 Notes Unit 03 Notes: Decimals

Math 6 Notes Unit 03 Notes: Decimals Math 6 Notes Unit 03 Notes: Decimals Reading and Writing Decimals Syllabus Objective: (3.2) The student will translate written forms of fractions, decimals, and percents to numerical form. Decimals are

More information

Lab Using the Windows Calculator with Network Addresses

Lab Using the Windows Calculator with Network Addresses Objectives Part 1: Access the Windows Calculator Part 2: Convert between Numbering Systems Part 3: Convert Host IPv4 Addresses and Subnet Masks into Binary Part 4: Determine the Number of Hosts in a Network

More information

REPRESENTING INFORMATION:

REPRESENTING INFORMATION: REPRESENTING INFORMATION: BINARY, HEX, ASCII CORRESPONDING READING: WELL, NONE IN YOUR TEXT. SO LISTEN CAREFULLY IN LECTURE (BECAUSE IT WILL BE ON THE EXAM(S))! CMSC 150: Fall 2015 Controlling Information

More information

2 Number Systems 2.1. Foundations of Computer Science Cengage Learning

2 Number Systems 2.1. Foundations of Computer Science Cengage Learning 2 Number Systems 2.1 Foundations of Computer Science Cengage Learning 2.2 Objectives After studying this chapter, the student should be able to: Understand the concept of number systems. Distinguish between

More information

Slide Set 1. for ENEL 353 Fall Steve Norman, PhD, PEng. Electrical & Computer Engineering Schulich School of Engineering University of Calgary

Slide Set 1. for ENEL 353 Fall Steve Norman, PhD, PEng. Electrical & Computer Engineering Schulich School of Engineering University of Calgary Slide Set 1 for ENEL 353 Fall 2017 Steve Norman, PhD, PEng Electrical & Computer Engineering Schulich School of Engineering University of Calgary Fall Term, 2017 SN s ENEL 353 Fall 2017 Slide Set 1 slide

More information

Hexadecimal Numbers. Journal: If you were to extend our numbering system to more digits, what digits would you use? Why those?

Hexadecimal Numbers. Journal: If you were to extend our numbering system to more digits, what digits would you use? Why those? 9/10/18 1 Binary and Journal: If you were to extend our numbering system to more digits, what digits would you use? Why those? Hexadecimal Numbers Check Homework 3 Binary Numbers A binary (base-two) number

More information

Chapter 2: Configuring Network Protocols

Chapter 2: Configuring Network Protocols Guide to MCSE 70-291, Enhanced 2-1 Chapter 2: Configuring Network Protocols Objectives After reading the chapter and completing the exercises, students should be able to: Understand TCP/IP addressing Define

More information

Basic Arithmetic Operations

Basic Arithmetic Operations Basic Arithmetic Operations Learning Outcome When you complete this module you will be able to: Perform basic arithmetic operations without the use of a calculator. Learning Objectives Here is what you

More information

The. Binary. Number System

The. Binary. Number System The Binary Number System Why is Binary important? Everything on a computer (or other digital device) is represented by Binary Numbers One to Five in various systems 1 2 3 4 5 I II III IV V 1 10 11 100

More information

1.1 Information representation

1.1 Information representation Fundamentals of Data Representation: Before we jump into the world of number systems, we'll need a point of reference; I recommend that you copy the following table that you can refer to throughout this

More information

In this lesson, we will use the order of operations to evaluate and simplify expressions that contain numbers and variables.

In this lesson, we will use the order of operations to evaluate and simplify expressions that contain numbers and variables. Show Me: Expressions M8081 Could we sit in a classroom on the other side of the world and still make sense of the mathematics? The answer is yes! Of course, we might not understand exactly what the teacher

More information

1.1 Review of Place Value

1.1 Review of Place Value 1 1.1 Review of Place Value Our decimal number system is based upon powers of ten. In a given whole number, each digit has a place value, and each place value consists of a power of ten. Example 1 Identify

More information

Game100 Networking Lab 4. Part 1 (5.1.4) Using the Windows Calculator with Network Addresses

Game100 Networking Lab 4. Part 1 (5.1.4) Using the Windows Calculator with Network Addresses Game100 Networking Lab 4 Name: Part 1 (5.1.4) Using the Windows Calculator with Network Addresses Objectives Switch between the two Windows Calculator modes. Use Windows Calculator to convert between decimal,

More information

What Is It? Instruction Register Address Register Data Register

What Is It? Instruction Register Address Register Data Register What Is It? Consider the following set of 32 binary digits, written in blocks of four so that the example is not impossible to read. 0010 0110 0100 1100 1101 1001 1011 1111 How do we interpret this sequence

More information

UNCA CSCI 255 Exam 1 Spring February, This is a closed book and closed notes exam. It is to be turned in by 1:45 PM.

UNCA CSCI 255 Exam 1 Spring February, This is a closed book and closed notes exam. It is to be turned in by 1:45 PM. UNCA CSCI 255 Exam 1 Spring 2017 27 February, 2017 This is a closed book and closed notes exam. It is to be turned in by 1:45 PM. Communication with anyone other than the instructor is not allowed during

More information

IP Addressing and Subnetting. 2002, Cisco Systems, Inc. All rights reserved.

IP Addressing and Subnetting. 2002, Cisco Systems, Inc. All rights reserved. IP Addressing and Subnetting 2002, Cisco Systems, Inc. All rights reserved. 1 Module Objectives Upon completion, you will be able to: Discuss the Types of Network Addressing Discover the Binary counting

More information

CS & IT Conversions. Magnitude 10,000 1,

CS & IT Conversions. Magnitude 10,000 1, CS & IT Conversions There are several number systems that you will use when working with computers. These include decimal, binary, octal, and hexadecimal. Knowing how to convert between these number systems

More information

Number Systems MA1S1. Tristan McLoughlin. November 27, 2013

Number Systems MA1S1. Tristan McLoughlin. November 27, 2013 Number Systems MA1S1 Tristan McLoughlin November 27, 2013 http://en.wikipedia.org/wiki/binary numeral system http://accu.org/index.php/articles/1558 http://www.binaryconvert.com http://en.wikipedia.org/wiki/ascii

More information

The exam. The exam. The exam 10. Sitting a City & Guilds online examination 11. Frequently asked questions 18. Exam content 20

The exam. The exam. The exam 10. Sitting a City & Guilds online examination 11. Frequently asked questions 18. Exam content 20 THE EXAM INTRODUCTION 9 The exam The exam The exam 10 Sitting a City & Guilds online examination 11 Frequently asked questions 18 Exam content 20 Tips from the examiner 25 10 EXAM SUCCESS IET WIRING REGULATIONS

More information

Digital Fundamentals

Digital Fundamentals Digital Fundamentals Tenth Edition Floyd Chapter 2 2009 Pearson Education, Upper 2008 Pearson Saddle River, Education NJ 07458. All Rights Reserved Decimal Numbers The position of each digit in a weighted

More information

Learning the Binary System

Learning the Binary System Learning the Binary System www.brainlubeonline.com/counting_on_binary/ Formated to L A TEX: /25/22 Abstract This is a document on the base-2 abstract numerical system, or Binary system. This is a VERY

More information

Address Class (Exercise) B A

Address Class (Exercise) B A Address Class (Exercise) Address Class 177.100.18.4 B 119.18.45.0 A 192.249.234.191 C 10.10.251.12 A 223.32.232.190 C 129.132.24.2 B 18.250.1.1 A 150.10.15.0 B 197.14.2.0 C 174.17.9.1 B 148.17.9.1 B 193.42.1.1

More information

MTK smartphone Multiple downloading tool operating instructions

MTK smartphone Multiple downloading tool operating instructions MTK smartphone Multiple downloading tool operating instructions Note: 6.0 upgrade, first power off the phone and plug the data cable directly; 7.0 upgrade(the same way to upgrade from 6.0 to 7.0), first

More information

Chapter 2 Bits, Data Types, and Operations

Chapter 2 Bits, Data Types, and Operations Chapter 2 Bits, Data Types, and Operations Original slides from Gregory Byrd, North Carolina State University Modified slides by Chris Wilcox, Colorado State University How do we represent data in a computer?!

More information

We have looked at how and why one router dials another using ISDN. Just as important is knowing what keeps the link up once it is dialed.

We have looked at how and why one router dials another using ISDN. Just as important is knowing what keeps the link up once it is dialed. ISDN Technologies From the CCNA to the CCIE, ISDN is one of the most important technologies you'll work with. It's also very common in the field; ISDN is frequently used as a backup connection in case

More information

Course Directive Degree Audit Exception

Course Directive Degree Audit Exception Course Directive Degree Audit Exception This guide will cover: How to add or remove a course from a requirement line in a student's degree audit. Step One Navigate to the following breadcrumb: Step Two

More information

Installing Your Multifunction to Your Network for the First Time

Installing Your Multifunction to Your Network for the First Time Next >> Installing Your Multifunction to Your Network for the First Time PIXMA MX340 Mac OS 1 > Navigation Tips for Macintosh Users To navigate this guide, please use the arrows on the

More information

Appendix. Numbering Systems. In This Appendix...

Appendix. Numbering Systems. In This Appendix... Numbering Systems ppendix In This ppendix... Introduction... inary Numbering System... exadecimal Numbering System... Octal Numbering System... inary oded ecimal () Numbering System... 5 Real (Floating

More information

Primary Source Verification Oman Medical Specialty Board (OMSB) - Oman Health practitioners with more than two years of most recent experience in Oman

Primary Source Verification Oman Medical Specialty Board (OMSB) - Oman Health practitioners with more than two years of most recent experience in Oman Primary Source Verification Oman Medical Specialty Board (OMSB) - Oman Health practitioners with more than two years of most recent experience in Oman How to Apply A Step By Step Guide for Completing Your

More information

Ratios can be written in several different ways. Using a colon. Using the word to. Or as a fraction.

Ratios can be written in several different ways. Using a colon. Using the word to. Or as a fraction. Show Me: Proportional Relationships M7051 Tanyss and her family are redecorating parts of their house. One of their projects is to replace the tiles on the kitchen floor, and they will use this plan of

More information

Extra Practice Problems 2

Extra Practice Problems 2 CS103 Handout 31 Fall 2018 October 29, 2018 Extra Practice Problems 2 Here's a set of a bunch of practice problems you can work through to solidify your understanding of the topics from Problem Sets Three,

More information

Numbers and Representations

Numbers and Representations Çetin Kaya Koç http://koclab.cs.ucsb.edu/teaching/cs192 koc@cs.ucsb.edu Çetin Kaya Koç http://koclab.cs.ucsb.edu Fall 2016 1 / 38 Outline Computational Thinking Representations of integers Binary and decimal

More information

CS/EE1012 INTRODUCTION TO COMPUTER ENGINEERING SPRING 2013 HOMEWORK I. Solve all homework and exam problems as shown in class and sample solutions

CS/EE1012 INTRODUCTION TO COMPUTER ENGINEERING SPRING 2013 HOMEWORK I. Solve all homework and exam problems as shown in class and sample solutions CS/EE2 INTRODUCTION TO COMPUTER ENGINEERING SPRING 23 DUE : February 22, 23 HOMEWORK I READ : Related portions of the following chapters : È Chapter È Chapter 2 È Appendix E ASSIGNMENT : There are eight

More information

Pre-Algebra Notes Unit One: Rational Numbers and Decimal Expansions

Pre-Algebra Notes Unit One: Rational Numbers and Decimal Expansions Pre-Algebra Notes Unit One: Rational Numbers and Decimal Expansions Rational Numbers Rational numbers are numbers that can be written as a quotient of two integers. Since decimals are special fractions,

More information

CHAPTER 2 Number Systems

CHAPTER 2 Number Systems CHAPTER 2 Number Systems Objectives After studying this chapter, the student should be able to: Understand the concept of number systems. Distinguish between non-positional and positional number systems.

More information

Number systems and binary

Number systems and binary CS101 Fundamentals of Computer and Information Sciences LIU 1 of 8 Number systems and binary Here are some informal notes on number systems and binary numbers. See also sections 3.1 3.2 of the textbook.

More information

Appendix. Numbering Systems. In this Appendix

Appendix. Numbering Systems. In this Appendix Numbering Systems ppendix n this ppendix ntroduction... inary Numbering System... exadecimal Numbering System... Octal Numbering System... inary oded ecimal () Numbering System... 5 Real (Floating Point)

More information

Rev Name Date. . Round-off error is the answer to the question How wrong is the rounded answer?

Rev Name Date. . Round-off error is the answer to the question How wrong is the rounded answer? Name Date TI-84+ GC 7 Avoiding Round-off Error in Multiple Calculations Objectives: Recall the meaning of exact and approximate Observe round-off error and learn to avoid it Perform calculations using

More information

When using computers, it should have a minimum number of easily identifiable states.

When using computers, it should have a minimum number of easily identifiable states. EET 3 Chapter Number Systems (B) /5/4 PAGE Number Systems (B) Number System Characteristics (Tinder) What s important in choosing a number system? Basically, there are four important characteristics desirable

More information

Digital Fundamentals. CHAPTER 2 Number Systems, Operations, and Codes

Digital Fundamentals. CHAPTER 2 Number Systems, Operations, and Codes Digital Fundamentals CHAPTER 2 Number Systems, Operations, and Codes Decimal Numbers The decimal number system has ten digits: 0, 1, 2, 3, 4, 5, 6, 7, 8, and 9 The decimal numbering system has a base of

More information

THE LOGIC OF COMPOUND STATEMENTS

THE LOGIC OF COMPOUND STATEMENTS CHAPTER 2 THE LOGIC OF COMPOUND STATEMENTS Copyright Cengage Learning. All rights reserved. SECTION 2.5 Application: Number Systems and Circuits for Addition Copyright Cengage Learning. All rights reserved.

More information

IT 1204 Section 2.0. Data Representation and Arithmetic. 2009, University of Colombo School of Computing 1

IT 1204 Section 2.0. Data Representation and Arithmetic. 2009, University of Colombo School of Computing 1 IT 1204 Section 2.0 Data Representation and Arithmetic 2009, University of Colombo School of Computing 1 What is Analog and Digital The interpretation of an analog signal would correspond to a signal whose

More information

Beyond Base 10: Non-decimal Based Number Systems

Beyond Base 10: Non-decimal Based Number Systems Beyond Base : Non-decimal Based Number Systems What is the decimal based number system? How do other number systems work (binary, octal and hex) How to convert to and from nondecimal number systems to

More information

Thanks, Peanut! Polygons are simple, closed figures having three or more straight sides. Or are they?

Thanks, Peanut! Polygons are simple, closed figures having three or more straight sides. Or are they? Angle Sums MA6927 Activity Introduction In Math news today, we re discussing the interior angle sums of polygons. To lead us into this labyrinth of sides and angles is Daaaaaaaaan Anchormann! Direct Instruction

More information

Informatics 1 - Computation & Logic: Tutorial 3

Informatics 1 - Computation & Logic: Tutorial 3 Informatics - Computation & Logic: Tutorial Counting Week 5: 6- October 7 Please attempt the entire worksheet in advance of the tutorial, and bring all work with you. Tutorials cannot function properly

More information

Parent s Guide to GO Math! Technology Correlation

Parent s Guide to GO Math! Technology Correlation hmhco.com Parent s Guide to GO Math! Technology Correlation Grade K Not sure how to help your child with homework? Looking for extra practice to help your child succeed? GO Math! Grade K has a variety

More information

Numeral Systems. -Numeral System -Positional systems -Decimal -Binary -Octal. Subjects:

Numeral Systems. -Numeral System -Positional systems -Decimal -Binary -Octal. Subjects: Numeral Systems -Numeral System -Positional systems -Decimal -Binary -Octal Subjects: Introduction A numeral system (or system of numeration) is a writing system for expressing numbers, that is a mathematical

More information

Review of Data Representation & Binary Operations Dhananjai M. Rao CSA Department Miami University

Review of Data Representation & Binary Operations Dhananjai M. Rao CSA Department Miami University Review of Data Representation & Binary Operations Dhananjai M. Rao () CSA Department Miami University 1. Introduction In digital computers all data including numbers, characters, and strings are ultimately

More information

9 R1 Get another piece of paper. We re going to have fun keeping track of (inaudible). Um How much time do you have? Are you getting tired?

9 R1 Get another piece of paper. We re going to have fun keeping track of (inaudible). Um How much time do you have? Are you getting tired? Page: 1 of 14 1 R1 And this is tell me what this is? 2 Stephanie x times y plus x times y or hm? 3 R1 What are you thinking? 4 Stephanie I don t know. 5 R1 Tell me what you re thinking. 6 Stephanie Well.

More information

Variables and Data Representation

Variables and Data Representation You will recall that a computer program is a set of instructions that tell a computer how to transform a given set of input into a specific output. Any program, procedural, event driven or object oriented

More information

Math 7 Notes Unit Three: Applying Rational Numbers

Math 7 Notes Unit Three: Applying Rational Numbers Math 7 Notes Unit Three: Applying Rational Numbers Strategy note to teachers: Typically students need more practice doing computations with fractions. You may want to consider teaching the sections on

More information

Hello! My name is PC and I am learning how to use a computer. Let s learn together! Unit1

Hello! My name is PC and I am learning how to use a computer. Let s learn together! Unit1 Hello! My name is PC and I am learning how to use a computer. Let s learn together! Unit1 The Computer Parts of a Computer The Mouse Disks What Can You Do? Programs Windows Parts of a Computer A computer

More information

Programming Concepts and Skills. ASCII and other codes

Programming Concepts and Skills. ASCII and other codes Programming Concepts and Skills ASCII and other codes Data of different types We saw briefly in Unit 1, binary code. A set of instructions written in 0 s and 1 s, but what if we want to deal with more

More information

TCP/IP Addressing. IP Addressing. IP Addressing. IP Addressing. 32 Bits. Dotted Decimal Maximum. 32 Bits. 32 Bits. Dotted Decimal Maximum

TCP/IP Addressing. IP Addressing. IP Addressing. IP Addressing. 32 Bits. Dotted Decimal Maximum. 32 Bits. 32 Bits. Dotted Decimal Maximum 000, Cisco Systems, Inc. - TCP/IP Addressing Dotted Decimal Maximum IP Addressing Bits 000, Cisco Systems, Inc. www.cisco.com ICND v. - Dotted Decimal Maximum Binary IP Addressing Bits 9 6 7 Dotted Decimal

More information

CS 100 Spring Lecture Notes 3/8/05 Review for Exam 2

CS 100 Spring Lecture Notes 3/8/05 Review for Exam 2 CS 100 Spring 2005 Lecture Notes 3/8/05 Review for Exam 2 The second exam is Thursday, March 10. It will cover topics from Homework 2 through Homework 4, including anything pertaining to binary representation.

More information

Topic Notes: Bits and Bytes and Numbers

Topic Notes: Bits and Bytes and Numbers Computer Science 220 Assembly Language & Comp Architecture Siena College Fall 2010 Topic Notes: Bits and Bytes and Numbers Binary Basics At least some of this will be review, but we will go over it for

More information

How to convert a numeric value into English words in Excel

How to convert a numeric value into English words in Excel How to convert a numeric value into English words in Excel (Microsoft Office Excel 2003, Microsoft Office Excel 2007, Microsoft Excel 2010, Excel 2016, Microsoft Excel 2013) Summary This article contains

More information

Rational Number is a number that can be written as a quotient of two integers. DECIMALS are special fractions whose denominators are powers of 10.

Rational Number is a number that can be written as a quotient of two integers. DECIMALS are special fractions whose denominators are powers of 10. PA Ch 5 Rational Expressions Rational Number is a number that can be written as a quotient of two integers. DECIMALS are special fractions whose denominators are powers of 0. Since decimals are special

More information

QUIZ: Generations of computer technology. Hardware:

QUIZ: Generations of computer technology. Hardware: QUIZ: Generations of computer technology Hardware: 1. 2. 3. 4. 5. 1 QUIZ: Generations of computer technology Software: 1. 2. 3. 4. 5. 6. 2 Steampunk! 3 The Telectroscope, 1878-2008 Steampunk Wikipedia

More information

Number Systems. The Computer Works in Binary, or how I learned to think like a computer. The computer s natural number system is binary not decimal.

Number Systems. The Computer Works in Binary, or how I learned to think like a computer. The computer s natural number system is binary not decimal. PROGRAMMING CONCEPTS Number Systems The Computer Works in Binary, or how I learned to think like a computer Copyright 2013 Dan McElroy The computer s natural number system is binary not decimal. For example,

More information

CS 31: Intro to Systems Binary Representation. Kevin Webb Swarthmore College September 6, 2018

CS 31: Intro to Systems Binary Representation. Kevin Webb Swarthmore College September 6, 2018 CS 3: Intro to Systems Binary Representation Kevin Webb Swarthmore College September 6, 28 Reading Quiz Announcements Sign up for Piazza! Let me know about exam conflicts! Register your clicker (clarification

More information

Beyond Base 10: Non-decimal Based Number Systems

Beyond Base 10: Non-decimal Based Number Systems Beyond Base : Non-decimal Based Number Systems What is the decimal based number system? How do other number systems work (binary, octal and hex) How to convert to and from nondecimal number systems to

More information

Intermediate Algebra. Gregg Waterman Oregon Institute of Technology

Intermediate Algebra. Gregg Waterman Oregon Institute of Technology Intermediate Algebra Gregg Waterman Oregon Institute of Technology c 2017 Gregg Waterman This work is licensed under the Creative Commons Attribution 4.0 International license. The essence of the license

More information

Pre-Algebra Notes Unit Five: Rational Numbers and Equations

Pre-Algebra Notes Unit Five: Rational Numbers and Equations Pre-Algebra Notes Unit Five: Rational Numbers and Equations Rational Numbers Rational numbers are numbers that can be written as a quotient of two integers. Since decimals are special fractions, all the

More information

Pre-Algebra Notes Unit Five: Rational Numbers and Equations

Pre-Algebra Notes Unit Five: Rational Numbers and Equations Pre-Algebra Notes Unit Five: Rational Numbers and Equations Rational Numbers Rational numbers are numbers that can be written as a quotient of two integers. Since decimals are special fractions, all the

More information