Unit 2.6 Data Representation Lesson 1 ‒ Numbers

Slides:



Advertisements
Similar presentations
Computer Basics Binary Bits & Bytes
Advertisements

Binary and Denary Numbers. Time remaining: Today’s date : all of the things that this COULD mean: even if you think that what you are thinking is daft.
Chapter 4: Representation of data in computer systems
Base 10 Denary Decimal
Processing Data.
Binary numbers. 1 Humans count using decimal numbers (base 10) We use 10 units: 0, 1, 2, 3, 4, 5, 6, 7, 8 and (5.
assumes basic arithmetic
Binary Aim: Explain binary and binary units Objective 1: Convert positive denary whole numbers (0-255) into 8-bit binary numbers and vice versa Objective.
Communications Technology 2104 Mercedes Lahey. Bit 1. bit=From a shortening of the words “binary digit” 2. the basic unit of information for computers.
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.
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!
Computer Systems Nat 4/5 Computing Science Data Representation Lesson 2: Floating Point Representation.
Numerical Representation Intro to Computer Science CS1510, Section 2 Dr. Sarah Diesburg 1.
1 3 Computing System Fundamentals 3.2 Computer Architecture.
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.
Working with 8-bit bytes and hexadecimal
How We Measure Memory. Learning Goal Today we are going to learn how the computer stores information.
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.
Lesson Objectives To understand the basic hardware of computers, and how they are made up To be able to compare performance of computers with price.
Thursday 8 th October, 2015 Information Technology Fundamentals of Hardware & Software.
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.
2.1.4 Data Representation Units.
Units Representation of Data in Computer Systems.
BINARY Toby Wilson. LEARNING OBJECTIVES  Be able to convert binary to denary  Be able to convert denary into binary  Be able to explain how computers.
Lesson Aim (Data representation) To be able to: Convert B/D & D/B Convert D/H & H/D Convert H/B & B/H Perform simple binary arithmetic Represent a number.
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.
Bits & Bytes Why computers use binary. Analog Signals Analog signals : constantly changing values – Difficult to make precise.
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.
Unit 2.6 Data Representation Lesson 1 ‒ Numbers
Understanding binary Understanding Computers.
Computer basics.
© 2003, Cisco Systems, Inc. All rights reserved.
Binary, Denary, Hexadecimal Conversion Binary Addition
Lesson Objectives Aims You should be able to:
Data Representation – numbers Binary conversion Hexadecimal Negative numbers Binary addition Binary shifts.
Data Representation N4/N5.
Consider this number: , Ones (7 ones) Tens (no tens)
Lesson Objectives Aims
Binary numbers: Week 7 Lesson 1
Numerical Representation
Memory Parts of a computer
Information Support and Services
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.
Representation of data in computer systems
3 - STORAGE: DATA CAPACITY CALCULATIONS
Denary to Binary Numbers & Binary to Denary
Data Representation Numbers
Representation of Data in Computer Systems
How do computers work? Storage.
Numerical Representation
Bits, Bytes, and Storage.
Data Representation – Numbers
(return of the…) Data blast
Data Binary Conversion.
Numerical Representation
Why computers use binary
Storage.
Binary System.
Technology 3 Bits & Bytes.
Computer Systems Nat 4/5 Computing Science Data Representation
CSE 102 Introduction to Computer Engineering
Numerical Representation
Presentation transcript:

Unit 2.6 Data Representation Lesson 1 ‒ Numbers

LIST ALL THE NAMES FOR MEASURING MEMORY SIZES

Recap: Sizes Bit 1 or a 0 Nibble 4 bits Byte 8 bits, 2 Nibbles Kilobyte (KB) 1 KB = 1024 Bytes Megabyte (MB) 1 MB = 1024 KB GigaByte (GB) 1 GB = 1024 MB TeraByte (TB) 1 TB = 1024 GB PetaByte (PB) 1 PB = 1024 TB

Transistors - switches

Why Binary? Binary is a number system that is made up of only 1 or 0. Because there is only 2 possibilities we say that this is a base 2 number system. We use binary because a CPU is made up of millions of transistors, that can be in one of 2 states (on/off) Computers use the binary number system to represent data.

Binary number system Computers need to be able to work with numbers and therefore our Denary number system needs converting into Binary. Binary number system is represented as follows: 27 26 25 24 23 22 21 20 128 64 32 16 8 4 2 1

Converting Binary to Denary The binary number 10110111 can be converted to Denary as: If a ‘1’ is present in that column, then you need to add that number to the others… This means you get: 128 + 0 + 32 + 16 + 0 + 4 + 2 + 1 = 183 27 26 25 24 23 22 21 20 128 64 32 16 8 4 2 1 27 26 25 24 23 22 21 20 128 64 32 16 8 4 2 1

Activity 2 Try converting these 8 bit numbers into their denary equivalent. 11101010 01011101 01100101 11111111

Converting Binary to Denary Converting 183 into Binary involves the following steps: 1. Does 128 go into 183? Yes so put a 1 Under 128. This leaves 55. 2. Does 64 go into 55? No so put a 0 under 64. This leaves 55 still. 3. Does 32 go into 55? Yes so put a 1 under 32. The leaves 23. 4. Does 16 go into 23?. Yes so put a 1 under 16. This leaves 7. 5. Does 8 go into 7? No so put a 0 under 8. This still leaves 7. 6. Does 4 go into 7? Yes so put a 1 under 4. This leaves 3. 7. Does 2 go into 3? Yes so put a 1 under 2. This leaves 1. 8. Does 1 go into 1? Yes so put a 1 under 1. 128 64 32 16 8 4 2 1 128 64 32 16 8 4 2 1 128 64 32 16 8 4 2 1 128 64 32 16 8 4 2 1 128 64 32 16 8 4 2 1 128 64 32 16 8 4 2 1 128 64 32 16 8 4 2 1 128 64 32 16 8 4 2 1

Activity 3 Try converting these denary numbers into their 8 bit binary equivalent: 27 131 96 241