Bits, Bytes, KiloBytes, MegaBytes, GigaBytes & TeraBytes.

Slides:



Advertisements
Similar presentations
Vocabulary Electronic pulses Transistors Decimal numbers
Advertisements

Information Representation
Computer Codes Rohit Khokher. Computer Codes Data types NumericNonnumeric IntegerRealAlphabet A, B, C, …,Z a, b, c,…,z Digits 0,…,9 Special Characters.
Base 10 Denary Decimal
Computer Architecture. Central Processing Unit (CPU)- micro processor The Personal Computer.
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,
CISCO NETWORKING ACADEMY Chabot College ELEC 74A Hexadecimal Introduction.
Number Systems & Logic Gates Day 1
Digital Data Patrice Koehl Computer Science UC Davis.
CODING SYSTEMS CODING SYSTEMS CODING SYSTEMS. CHARACTERS CHARACTERS digits: 0 – 9 (numeric characters) letters: alphabetic characters punctuation marks:
Hexadecimal and ASCII Lesson Objective: Understand the purpose of ASCII and how to use it. Lesson Outcome: Convert between Hexadecimal and ASCII Convert.
Bits and Bytes.
Communications Technology 2104 Mercedes Lahey. Bit 1. bit=From a shortening of the words “binary digit” 2. the basic unit of information for computers.
Communications technology Ali Kennedy.  Bit= from a shortening of the words “ bi nary digit”  The basic unit ofinformation for computers  1 or 0 are.
Memory Terminology & Data Representation CSCI 1060 Fall 2006.
Aloha Aloha What you see: What the computer sees: binary number columns binary number columns
Computer Systems Chapter 1 Pages Hardware-physical pieces Key hardware components in a computer system: The physical parts. – Central processing.
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.
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,
Binary Code.
Hardware Data Storage.
 Explain the function of ASCII code  Describe the unit of data measurement: Bit, Bait, KB, MB, GB, TB  Describe the unit of clock speed Megahertz and.
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.
1 3 Computing System Fundamentals 3.2 Computer Architecture.
 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.
How We Measure Memory. Learning Goal Today we are going to learn how the computer stores information.
GCSE ICT Storing data - Internal memory, backing storage, and measuring memory.
Data Representation (in computer system). Data Representation How do computers represent data? b The computers are digital Recognize.
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???
Business Programming I Fall – 2000 By Jim Payne Lecture 05Jim Payne - University of Tulsa2 Alphanumeric Storage Numbers that are not numbers? Alphabetic.
ASCII AND EBCDIC CODES By : madam aisha.
Binary Decimal Hexadecimal
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;
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.
1.4 Representation of data in computer systems Character.
Decimal Numbers.
Unit 2.6 Data Representation Lesson 1 ‒ Numbers
Understanding binary Understanding Computers.
© 2003, Cisco Systems, Inc. All rights reserved.
Consider this number: , Ones (7 ones) Tens (no tens)
Discrete Mathematics Numbering System.
Unit 18: Computational Thinking
CSCI 198: Lecture 4: Data Representation
Storage Hardware This icon indicates the slide contains activities created in Flash. These activities are not editable. For more detailed instructions,
Data Transfer ASCII FILES.
CSCI 161: Lecture 4: Data Representation
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.
Intermediate 2 Computing
इंट्रस्टिंग बनने के लिए आपको इंट्रस्टेड होना पड़ेगा।
Data Encoding Characters.
Lecture 3 ISE101: Computing Fundamentals
Binary and Hexadecimal Numbers
Binary Data representation
Binary Lesson 3 Hexadecimal
Binary Lesson 3 Hexadecimal
Bits and Bytes Key Revision Points.
Learning Intention I will learn how computers store text.
Binary System.
WJEC GCSE Computer Science
Presentation transcript:

Bits, Bytes, KiloBytes, MegaBytes, GigaBytes & TeraBytes.

Bit 0 or 1

Byte Equivalent to 8 bits

KiloByte 2 10 Bytes (approx. a thousand) K - Thousand 10 3

MegaByte 2 20 Bytes (approx. a million) M - Million 10 6

GigaByte 2 30 Bytes (approx. a billion) G - Billion 10 9

TeraByte 2 40 Bytes (approx. a trillion) T - Trillion 10 12

Decimal (compare to binary) 451 = 4* * * = 4* * * * = 5* * * * *10 0

Binary = 1* *2 3 +0*2 2 +1*2 1 +1*2 0 = = 19 (in base 10) = 1* * *2 3 +1*2 2 +0*2 1 +1*2 0 = = 45 (in base 10) 1101 = ?

One character is represented using one byte (8 bits)

ASCII American Standard Code for Information Interchange The ASCII character code for the letter A is 65 = The ASCII character code for the letter B is 66 = etc.

ASCII (continued) The ASCII character code for a space (pressing the space bar) is 32 = The ASCII character code for the letter a is 97 = The ASCII character code for the letter b is 98 = etc.

Base 16 Base two - digits run from 0 to 1 Base ten - digits run from 0 to 9 Base sixteen - digits run from 0 to 15 The digits are: A B C D E F

Hexadecimal to Decimal 8 D = 8* D*16 0 = 8* *16 0 = 141 D 8 = D* *16 0 = 13* *16 0 = E = 3* E*16 0 = 3* *16 0 = 62

Decimal to Hexadecimal D 125 in base 16 is: Therefore, there is a remainder of 13 (or D). 16*7 = 112 and = 13. 7D

Decimal to Hexadecimal BF 191 in base 16 is: Therefore, there is a remainder of 15 (or F). 16*11 = 176 and = 15. BF