Data Representation A series of eight bits is called a byte. A byte can be used to represent a number or a character. As you’ll see in the following table,

Slides:



Advertisements
Similar presentations
Computer Basics Binary Bits & Bytes
Advertisements

Data Representation. Units & Prefixes Review kilo, mega, and giga are different in binary! bit (b) – binary digit Byte (B) – 8 binary digits KiloByte.
1 Chapter 2 The Digital World. 2 Digital Data Representation.
Processing Data.
Binary and Hexadecimal Numbers
Units of Storage What is Storage. A look at Storage We know computers can store large amounts of data. We measure the storage capacity of different storage.
Unit 3—Part A Computer Memory
Number Systems & Logic Gates Day 1
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.
Computer Storage & Representing Numbers CE 311 K - Introduction to Computer Methods Daene C. McKinney.
Memory Terminology & Data Representation CSCI 1060 Fall 2006.
Computer Systems Chapter 1 Pages Hardware-physical pieces Key hardware components in a computer system: The physical parts. – Central processing.
MAC OS – Unit A Page: 10-11, Investigating Data Processing Understanding Memory.
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.
Slide 1 Wednesday, October 07, 2015 Low Level Machine.
Binary Code.
Fill in the blanks: (1) _________ has only two possible values 0 and 1. (2) There are __________bits in a byte. (3) 1 kilobyte of memory space can store.
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!
Lecture Binary and Hexadecimal Numbers. How Machines Think Computers handle two types of information: –Instructions –Data The "words" of a machine language.
OBJECTIVES  Explain why a computer represents data in the form of binary  Explain the terms related to data storage: bit, byte, character, word  Calculate.
Getting to know Storage Media 1.Stores information 2.Retrieve information for later use.
GCSE Information Technology Computer Systems 2 Hardware is the name that is given to any part of a computer that you can actually touch. An individual.
1 3 Computing System Fundamentals 3.2 Computer Architecture.
Unit 2—Part A Computer Memory Computer Technology (S1 Obj 2-3)
Bits and Bytes IGCSE. A binary number is either a 0 or a 1 and is known as a 'bit' or b inary dig it. However, the CPU cannot deal with just one bit at.
 Bits & Bytes Bits & Bytes  Units of data Units of data  Storage devices Storage devices  Storage Types Storage Types  Secondary Storage Secondary.
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.
Do it now activity Can you work out what the missing symbols are and work out the order they should be in if the table shows smallest to largest KB kilobyte.
How We Measure Memory. Learning Goal Today we are going to learn how the computer stores information.
Data Representation The storage of Text Numbers Graphics.
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.
Computers - The Journey Inside continues…
How We Measure Memory. At the Bottom of things A piece of digital information is always stored as a sequence of binary states. What’s that mean you ask???
Computer Math CPS120: Binary Representations. Binary computers have storage units called binary digits or bits: Low Voltage = 0 High Voltage = 1 all bits.
Measuring Memory and Storage
2.1.4 Data Representation Units.
ASCII AND EBCDIC CODES By : madam aisha.
Number Systems Part 2. Counting in Binary DecimalBinary
Understanding Computers
Binary a. express numbers in binary, binary-coded decimal (BCD), octal and hexadecimal;
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.
Understanding Binary Understanding Computers. Understanding Computers L3 – Understanding Binary Learning Objectives All will Understand why all data is.
 Human language : commonly used to express feeling and understand what other people expression.  Computer language : are a languages by which a user.
1.4 Representation of data in computer systems Character.
© OCR 2016 Unit 2.6 Data Representation Lesson 1 ‒ Numbers.
Understanding binary Understanding Computers.
Computer basics.
© 2003, Cisco Systems, Inc. All rights reserved.
How Computers Store Variables
Computer Memory Digital Literacy.
Bits and bytes September 19, 2017.
Memory Parts of a computer
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 Computer Memory Computer Technology (S1 Obj 2-3)
Data Encoding Characters.
COMPUTER MEMORY & DATA STORAGE
COMPUTER MEMORY & DATA STORAGE
Unit 3—Part A Computer Memory
How do computers work? Storage.
Unit 3—Part A Computer Memory
Binary and Hexadecimal Numbers
Bits, Bytes, and Storage.
Binary Data representation
Binary System.
Information Technology Department
LO1 – Understand Computer Hardware
Technology 3 Bits & Bytes.
Presentation transcript:

Data Representation A series of eight bits is called a byte. A byte can be used to represent a number or a character. As you’ll see in the following table, the byte that represents the integer value 0 is , with all eight bits “off” or set to 0. The byte that represents the integer value 1 is , and the byte that represents 255 is

Data Representation

Microcomputers commonly use the ASCII code to represent character data. Each byte represents a unique character such as the number 8, the letter A, or the dollar sign symbol $. For example, the phrase “Hi there!” is represented by 9 bytes. Each of the seven letters requires one byte, and the space and the exclamation point also require one byte each. As you’ll see in the following table, the ASCII code for the letter A is the byte , and the ASCII code for the lowercase letter a is

Data Representation

As a computer user, you don’t have to know the binary representations of numbers, characters, and instructions—the computer handles all the necessary conversions internally. However, because the amount of memory in a computer and its storage capacity are expressed in bytes, you do need to be aware of how data is represented to have an idea of how much data you can store in your computer.

Data Representation You will often see the symbols KB, MB, and GB in reference to both processing and storage capacities. A kilobyte (KB) is approximately one thousand bytes, a megabyte (MB) is about one million bytes, and a gigabyte (GB) is approximately one billion bytes. 1 KB = 2 10 bytes = 1,024 bytes 1 MB = 2 20 bytes = 1,048,576 bytes 1 GB = 2 30 bytes = 1,073,741,824 bytes