COMT 222 Tools for a Digital World. Digital? What makes information Digital? If it helps:  When is information not analog? Answer:  A finite number.

Slides:



Advertisements
Similar presentations
NUMBER SYSTEM. How to convert hexadecimal numbers to decimal numbers? 230 Working from right to left, MULTIPLY each position with 8 raised to the power.
Advertisements

Logic Design Logic design deals with the basic concepts and tools used to design digital hardware consisting of logic circuits Digital devices: airbags,
Number Systems. 2 The total number of allowable symbols in a number system is called the radix or base of the system. Decimal Numbers: radix = 10 (symbols:
1 Logic Design Logic design deals with the basic concepts and tools used to design digital hardware consisting of logic circuits Digital devices: airbags,
CISCO NETWORKING ACADEMY Chabot College ELEC 74A Hexadecimal Introduction.
Lesson 2 0x Coding ASCII Code.
COMPUTER FUNDAMENTALS David Samuel Bhatti
+ CS 325: CS Hardware and Software Organization and Architecture Integers and Arithmetic.
Data Storage Introduction to computer, 2nd semester, 2010/2011 Mr.Nael Aburas Faculty of Information Technology Islamic.
Hexadecimal and ASCII Lesson Objective: Understand the purpose of ASCII and how to use it. Lesson Outcome: Convert between Hexadecimal and ASCII Convert.
Number Systems.
ECE 2110: Introduction to Digital Systems Signed Number Conversions.
1 Computer Fundamental ITD1382 Coursework : 100% 1. Tests 2. Quizzes (Short) 3. Assignments Module Value : 3.0.
Fundamentals of Python: First Programs Chapter 4: Number Systems.
Chapter 3 Representing Numbers and Text in Binary Information Technology in Theory By Pelin Aksoy and Laura DeNardis.
STATISTIC & INFORMATION THEORY (CSNB134) MODULE 8 INTRODUCTION TO INFORMATION THEORY.
NUMBER SYSTEM.
CONVERSION OF NUMBER SYSTEMS FAHEEM ANWAR MANAGER NETWORKS ACADEMY PTCL ACADEMY.
Data Basics. Binary Number System Numeration systems are methods of representing numbers. All current number systems are positional in nature. In
Number systems, Operations, and Codes
Number System. Number Systems Important Number systems – Decimal – Binary – Hexadecimal.
Number Base Conversions
Converting From decimal to Binary & Hexadecimal to Binary
The Teacher CP4 Binary and all that… CP4 Revision.
1 Data Representation Characters, Integers and Real Numbers Binary Number System Octal Number System Hexadecimal Number System Powered by DeSiaMore.
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.
Data Representation Hexadecimal  Although computers work in binary it is sometimes inconvenient for humans to read everything in Binary. For example in.
DECIMALBINARY a) b) c) d) e) f) Revision Exercise DECIMALBINARY a) b) c)
Binary01.ppt Decimal Decimal: Base 10 means 10 Unique numerical digits ,00010,000 Weight Positions 3,
Springfield Technical Community College Center for Business and Technology.
CS 111 – Sept. 1 Intro to data representation Binary numbers –Convert binary  decimal –Convert decimal  binary Text –ASCII and Unicode Commitment: –For.
Digital Systems Digital Logic and Design Dr. Musab Bassam Zghool Text Book: Mano Morris M. “ Digital Logic And Computer Design ”
CEC 220 Digital Circuit Design Number Systems & Conversions Friday, January 9 CEC 220 Digital Circuit Design Slide 1 of 16.
CEC 220 Digital Circuit Design Number Systems & Conversions Wednesday, Aug 26 CEC 220 Digital Circuit Design Slide 1 of 16.
Comp 335 – File Structures Hexadecimal Dumps Interpreting File Contents.
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.
Binary numbers. Primary memory Memory = where programs and data are stored – Unit = bit “BIT” is a contraction for what two words? Either a 1 or a 0 (because.
STARTER – CRACK THE CODE
Chapter 5 NUMBER REPRESENTATION AND ARITHMETIC CIRCUITS.
Binary a. express numbers in binary, binary-coded decimal (BCD), octal and hexadecimal;
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.
Number Systems Decimal Can you write 12,045 in expanded form? Base? Allowable digits for each place?
ECE 2110: Introduction to Digital Systems Signed Number Conversions.
Unit 2.6 Data Representation Lesson 1 ‒ Numbers
Unit 18: Computational Thinking
By: Jonathan O. Cabriana
Information Support and Services
2.0 COMPUTER SYSTEM 2.2 Number System and Representation
Data Storage Introduction to computer, 2nd semester, 2010/2011
Binary Quiz UIN: ____________________
Number Systems Base 2, 10, 16.
Binary, Octal and Hex Numbers Copyright Thaddeus Konar
Unit 2.6 Data Representation Lesson 1 ‒ Numbers
Binary Lesson 3 Hexadecimal
Binary, Octal and Hex Numbers Copyright Thaddeus Konar
COMS 161 Introduction to Computing
Binary Lesson 3 Hexadecimal
COMS 161 Introduction to Computing
Binary Lesson 3 Hexadecimal
Chapter 2 Number Systems.
Numeral systems (radix)
Chapter 2 Number Systems.
Binary Lesson 4 Hexadecimal and Binary Practice
GCSE COMPUTER SCIENCE Topic 3 - Data 3.4 Hexadecimal Conversion.
Chapter 2 Number Systems.
Lecture 36 – Unit 6 – Under the Hood Binary Encoding – Part 2
Chapter 2 Number Systems.
Presentation transcript:

COMT 222 Tools for a Digital World

Digital? What makes information Digital? If it helps:  When is information not analog? Answer:  A finite number of “symbols”  A fixed time associated with a symbol

OK, so what is a symbol? Conveys a digital value Transmitted at a given “symbol rate”, i.e.  A circuit sends a certain number of symbols per second  A symbol takes a fixed amount of time to send In practice a symbol represents a certain number of bits

Binary Is the simplest form of a digital symbol Each binary “symbol” can represent either a 0 or a 1 If a unit of information (often called a symbol) is one bit long, it can send two values

Binary Numbers Converting to and from binary  Position values:

Binary/Decimal Conversion Convert to decimal:  1  11  111  1111  1010 Convert to binary: 27

A related issue Given a number of bits, how many symbols can you make?  1 bit: 0 to 1  2 bits: 00 to 11  3 bits: 000 to 111

Hexadecimal Binary numbers have lots of digits Using another number system allows grouping of bits Hexadecimal digits (and their values):  (What is 15 in binary?) ABCDEF

Bit Groups as Hex Digits A1010 B1011 C1100 D1101 E1110 F1111

Hex to and From Decimal Convert  180 to hex  0x3e to decimal

Application - ASCII Text is digital Need to agree on “encoding” What string of bits do we assign to  COMT 222 ASCII (in hex)  43 4F 4D