Information Support and Services

Slides:



Advertisements
Similar presentations
Vocabulary Electronic pulses Transistors Decimal numbers
Advertisements

Number Systems and Codes
1 Chapter 2 The Digital World. 2 Digital Data Representation.
Representing Data, Pictures, Time, and Size in Computer
Processing Data.
Binary and Hexadecimal Numbers
Binary Expression Numbers & Text CS 105 Binary Representation At the fundamental hardware level, a modern computer can only distinguish between two values,
1 Chapter Overview Computer Communication The Computer Bus Objectives  Understand how a computer transmits and receives information.  Explain the principles.
Data Representation (in computer system) Computer Fundamental CIM2460 Bavy LI.
Binary and Decimal Numbers
Introduction to Information Technology
IT-101 Section 001 Lecture #4 Introduction to Information Technology.
Bits and Bytes.
Representing Information in Binary (Continued)
CREATED BY, MS. JENNIFER DUKE BITS, BYTES, AND UNITS OF MEASUREMENT.
Hexadecimal and ASCII Lesson Objective: Understand the purpose of ASCII and how to use it. Lesson Outcome: Convert between Hexadecimal and ASCII Convert.
Bits, Bytes, KiloBytes, MegaBytes, GigaBytes & TeraBytes.
Communications Technology 2104 Mercedes Lahey. Bit 1. bit=From a shortening of the words “binary digit” 2. the basic unit of information for computers.
Bits & Bytes: How Computers Represent Data
Data and Program Representation
Chapter 2 Computer Hardware
Copyright © 2003 by Prentice Hall Module 5 Central Processing Unit 1. Binary representation of data 2. The components of the CPU 3. CPU and Instruction.
Discovering Computers Fundamentals, 2010 Edition Living in a Digital World Chapter Three.
Data Representation and Storage Lecture 5. Representations A number value can be represented in many ways: 5 Five V IIIII Cinq Hold up my hand.
What do computers know?  All they really know is on or off.  Kind of like a light switch  Computers aren’t nearly as smart as you are!
Text and Graphics September 26, Unit 3.
The Hexadecimal Number System and Memory Addressing ISAT 121.
1 3 Computing System Fundamentals 3.2 Computer Architecture.
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.
Working with 8-bit bytes and hexadecimal
General Computer Stuff Hardware: physical parts of a computer: CPU, drives, etc. Software: Programs and Data A computer needs both to be useful.
Networking for Home and Small Businesses –.  Explain the binary representation of data.
Data Representation (in computer system). Data Representation How do computers represent data? b The computers are digital Recognize.
2.1.4 Data Representation Units.
* Numeral Systems: A writing method for expressing numbers is called a “Numeral System". In the most common numeral system, we write numbers with combinations.
ASCII AND EBCDIC CODES By : madam aisha.
A+ Computer Repair Lesson 3: Number System. Objectives Define binary, decimal, octal, and hexadecimal numbering systems. Define binary, decimal, octal,
Understanding Computers
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.
Binary Numbers. Base 10 and Base 2  We normally work with numbers in base 10.  In base 10 we use the digits 0, 1, 2, 3, 4, 5, 6, 7, 8 and 9.  Everything.
CC111 Lec#2 The System Unit The System Unit: Processing and Memory Lecture 2 Binary System.
Understanding Binary Understanding Computers. Understanding Computers L3 – Understanding Binary Learning Objectives All will Understand why all data is.
Numerical Representation Intro to Computer Science CS1510 Dr. Sarah Diesburg 1.
© OCR 2016 Unit 2.6 Data Representation Lesson 1 ‒ Numbers.
Understanding binary Understanding Computers.
3 – Boolean Logic and Logic Gates 4 – Binary Numbers
Number Systems and Codes
INFS 211: Introduction to Information Technology
3.1 Denary, Binary and Hexadecimal Number Systems
Numerical Representation
Bits & Bytes How Computers Represent Data
What is Binary? Binary is a two-digit (Base-2) numerical system, which computers use to process and store data. The reason computers use the binary system.
Unit 2.6 Data Representation Lesson 1 ‒ Numbers
Coding Schemes and Number Systems
Lecture 3 ISE101: Computing Fundamentals
Data Representation Numbers
History of Binary A Presentation By: Yasmine Dabbah, Daniel Mashal, Gracee Kim, and Chance Ward.
How do computers work? Storage.
Numerical Representation
Computers & Programming Languages
Bits, Bytes, and Storage.
Information Representation
COMS 161 Introduction to Computing
COMS 161 Introduction to Computing
Numerical Representation
Chapter Four Data Representation in Computers By Bezawit E.
Information Technology Department
LO1 – Understand Computer Hardware
Numerical Representation
Presentation transcript:

Information Support and Services 2.01 Understand how computers and high tech communication devices work.

Number Systems and Codes Translate number systems and codes Representations Systems Groupings Translations Codes

Translate number systems and codes Why study number systems and codes? Computers and smart devices are all based on circuits that work with only two states; on and off. These states are represented by the binary numbers 0 and 1. All data must be converted to binary code before being processed.

Translate number systems and codes Representations Data can be represented in two forms: Analog Digital The majority of modern computers are digital devices.

Translate number systems and codes Representations Analog: Measuring or representing data by means of one or more physical properties that can express any value along a continuous scale.

Translate number systems and codes Representations Digital: Expressed in discrete numerical form, especially for use by a computer or other electronic device.

Translate number systems and codes This course focuses on three number systems: Decimal: The number system people use. Binary: The number system most computers use. Hexadecimal: A number system that is used to make binary numbers more compact.

Translate number systems and codes Decimal: Base 10 0,1,2,3,4,5,6,7,8,9

Translate number systems and codes Decimal: Place Weights 1 2 7 5 103 102 101 100 5x100 = 5 7x101 = 70 2x102 = 200 1x103 = 1,000 TOTAL 1,275 Any number raised to the power of zero is 1

Translate number systems and codes Binary: Base 2 1

Translate number systems and codes Why Binary? Computers are digital devices. They are made of millions of tiny transistors which are operated in one of two states – OFF (0) or ON (1)

Translate number systems and codes Binary: Place Weights 1 23 22 21 20 1x20 = 1 1x21 = 2 0x22 = 1x23 = 8 TOTAL 11 The only digits in a binary number are 0 & 1. This is the decimal equivalent

Translate number systems and codes Hexadecimal: Base 16 We only use 10 digits, so letters are added. 0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F

Translate number systems and codes Why Hexadecimal? Large binary numbers are difficult for humans to work with; hexadecimal is a more compact form. It is quicker to convert between binary and hexadecimal than binary and decimal. These are all the same number: 1010 0100 1010 0011 A 4 A 3 42,147

Translate number systems and codes Hexadecimal: Place Weights 2 A C 163 162 161 160 Cx1 = 12 Ax16 = 160 2x256= 512 0x4096= TOTAL 684 This is the decimal equivalent

Translate number systems and codes Where are some places hexadecimal numbers are commonly used? The physical (MAC) address of a network card. Color codes in html.

Translate number systems and codes Binary Grouping Bit Nibble Byte BYTE (8 BITS) 1 Nibble (4 bits) (One hex digit) BIT

Translate number systems and codes SI (International System) Units The following metric prefixes are used to condense binary numbers: Kilobit kb Megabit Mb Gigabit Gb Terabit Tb Kilobyte kB Megabyte MB Gigabyte GB Terabyte TB Typical Internet Speed = 1.5 Mb/s (Megabits per second) Hard disk drive size= 1 TB (terabyte)

Translate number systems and codes Conversions It is often necessary to be able to perform the following conversions: Decimal to Binary Binary to Decimal Decimal to Hexadecimal Hexadecimal to Decimal Binary to Hexadecimal Hexadecimal to Binary

Translate number systems and codes Remember: A computer only operates on binary numbers! Codes American Standard Code for Information Interchange ASCII (pronounced as-key) A way of expressing text and other non-numerical characters in binary code. Character Hex Binary A 41 0100 0001 a 61 0110 0111

Translate number systems and codes ASCII Text documents must be stored as numbers on the computer’s hard drive. Text messages are transmitted as ones and zeros over the wireless network. 1010101 1010101

Translate number systems and codes Unicode The Unicode standard assigns codes to characters in many languages so a computer can recognize these characters. Sample codes: UTF-8 UTF-16 UTF-32 The number of characters represented increases as the UTF designation increases.

Translate number systems and codes Unicode The dominant scheme for internal processing and storage of text UTF-8 is the most common Unicode encoding for HTML documents on the World Wide Web. utf-8

Information Systems Websites http://openbookproject.net/electricCircuits/Digital/DIGI_1.html Open Book Project - Lessons In Electric Circuits -- Volume IV