HNC COMPUTING - COMPUTER PLATFORMS 1 Micro Teach Binary.

Slides:



Advertisements
Similar presentations
KFUPM COE 202: Digital Logic Design Number Systems Part 3 Courtesy of Dr. Ahmad Almulhem.
Advertisements

Representing Data, Pictures, Time, and Size in Computer
Review Binary –Each digit place is a power of 2 –Any two state phenomenon can encode a binary number –The number of bits (digits) required directly relates.
Representing Information as Bit Patterns Lecture 4 CSCI 1405, CSCI 1301 Introduction to Computer Science Fall 2009.
Data Representation (in computer system) Computer Fundamental CIM2460 Bavy LI.
1 12/08/03SW Abingdon and Witney College Binary Converting to and from decimal.
Bits and Bytes.
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.
Abstraction – Number Systems and Data Representation.
Aloha Aloha What you see: What the computer sees: binary number columns binary number columns
Chapter 1 Data Storage(2) Yonsei University 1 st Semester, 2014 Sanghyun Park.
Data Representation S2. This unit covers how the computer represents- Numbers Text Graphics Control.
Chapter 2 Computer Hardware
Ahmad Almulhem, KFUPM 2010 COE 202: Digital Logic Design Number Systems Part 4 Dr. Ahmad Almulhem ahmadsm AT kfupm Phone: Office:
Information and Programs. Foundations of Computing Information –Binary numbers –Integers and Floating Point –Booleans (True, False) –Characters –Variables.
Binary Code.
Hardware Data Storage.
Advanced Diploma 1 Backing Storage. Advanced Diploma 2 Aims Understand how data is stored Be able to use the binary system to represent ASCII characters.
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.
1 Pertemuan 2 Network Math. Discussion Topics Binary presentation of data Bits and bytes Base 10 number system Base 2 number system Converting decimal.
©Contrinex JDC PPT_XF_BinHexDecASCII Encoding information J.-D. Chatelain.
1 3 Computing System Fundamentals 3.5 Data Representation.
More Binary How does a computer represent everything using just zeros and ones?
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.
The Information School of the University of Washington Oct 13fit digital1 Digital Representation INFO/CSE 100, Fall 2006 Fluency in Information Technology.
Data Representation. What is data? Data is information that has been translated into a form that is more convenient to process As information take different.
Data Representation.
Communicationcommunication Created by- Upendra Sharma.
Binary 101 Gads Hill School. Aim To strengthen understanding of how computers use the binary number system to store information.
09/06/ Data Representation ASCII, Binary Denary Conversion, Integer & Boolean data types.
A+ Computer Repair Lesson 3: Number System. Objectives Define binary, decimal, octal, and hexadecimal numbering systems. Define binary, decimal, octal,
Lesson 6 Binary Understand what Binary Code means and apply this knowledge Understand how data is represented using bit systems and be able to change decimal.
HNC COMPUTING - COMPUTER PLATFORMS 1 Computer Platforms Week 2 Backing Storage.
Understanding Computers
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.
1.4 Representation of data in computer systems Character.
Lecture Coding Schemes. Representing Data English language uses 26 symbols to represent an idea Different sets of bit patterns have been designed to represent.
COMPUTER ORGANIZATION 4 TH LECTURE. ASCII Code  ASCII ( American Standard Code for Information Interchange).  Input and output devices that communicate.
Nat 4/5 Computing Science Data Representation Lesson 3: Storing Text
Binary and Hard Disk PEOPLE Program
Understanding binary Understanding Computers.
Unit 2.6 Data Representation Lesson 2 ‒ Characters
BINARY CODE.
Storage Hardware This icon indicates the slide contains activities created in Flash. These activities are not editable. For more detailed instructions,
Numerical Representation
Data Transfer ASCII FILES.
How does a computer represent everything using just zeros and ones?
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
RFID - EN Encoding information Encoding information J.-D. Chatelain.
Data Encoding Characters.
Data Representation ASCII.
Representing Nonnumeric Data
Data Representation Question: Characters
How does a computer represent everything using just zeros and ones?
Numerical Representation
Ch2: Data Representation
Introduction to Binary
Data Binary Conversion.
Plan Attendance Files Posted on Campus Cruiser Homework Reminder
How Computers Store Data
Numerical Representation
Learning Intention I will learn how computers store text.
LO1 – Understand Computer Hardware
Electronic Memory.
Numerical Representation
Presentation transcript:

HNC COMPUTING - COMPUTER PLATFORMS 1 Micro Teach Binary

HNC COMPUTING - COMPUTER PLATFORMS 2 Aims Understand how data is stored Be able to use the binary system to represent ASCII characters

HNC COMPUTING - COMPUTER PLATFORMS 3 How is data stored? Bits and bytes – –A computer only understands the numbers 0 or 1,true or false, or whether a switch is on or off. – –We call those 1s and 0s ‘bits’ – binary digits. – –A byte (made up of 8 bits) is enough computer memory to store a single character of data (e.g. the letter F). – –Half a byte is known as a nibble (made up of 4 bits) – –Using the ASCII code, for instance, the letter F is 70 and has a bit pattern of

HNC COMPUTING - COMPUTER PLATFORMS 4 How is data stored? Cont. ASCII for Capital Letters 65A 78N 66B 79O 67C 80P 68D 81Q 69E 82R 70F 83S 71G 84T 72H 85U 73I 86V 74J 87W 75K 88X 76L 89Y 77M 90Z American Standard Code for Information Interchange (ask-ee) is a code which represents English characters as numbers. Each letter is assigned a number. For example, A = 65. Most computers use ASCII codes. This makes it possible to transfer data from one computer to another by changing the ASCII code into a binary pattern.

HNC COMPUTING - COMPUTER PLATFORMS 5 How is data stored? Cont. Decimal When we write numbers in the decimal system, we write them in columns. Each column is ten times bigger than the one before (right to left). Tens of millions millions100000s10000s1000s100s10s1s 1010 So 1010 is 1000 plus 10 = Tens of millions millions100000s10000s1000s100s10s1s would be plus 1000 plus 10 =

HNC COMPUTING - COMPUTER PLATFORMS 6 How is data stored? Cont. In the binary system, everything is based on 2s, not 10s, so each column is twice as big as the one before. 128s64s32s16s8s4s2s1s 1010 So 1010 in binary is 8 plus 2 = s64s32s16s8s4s2s1s would be 16 plus 8 plus 2 = 26.

HNC COMPUTING - COMPUTER PLATFORMS 7 You have ago

HNC COMPUTING - COMPUTER PLATFORMS 8 How is data stored? Cont. All computer data is stored in binary form. This not only includes text, but images, sounds and movies as well. The more complex the data, the more memory is used to store it. This does not take up as much memory… …as this.

HNC COMPUTING - COMPUTER PLATFORMS 9 Conclusion We discussed how data is stored How to use the binary system to represent ASCII characters