Electronic Memory.

Slides:



Advertisements
Similar presentations
Representing Data, Pictures, Time, and Size in Computer
Advertisements

Processing Data.
Working with the data type: char  2000 Prentice Hall, Inc. All rights reserved. Modified for use with this course. Introduction to Computers and Programming.
Bit Operations C is well suited to system programming because it contains operators that can manipulate data at the bit level –Example: The Internet requires.
A bit can have one of two values: 0 or 1. The C language provides four operators that can be used to perform bitwise operations on the individual bits.
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.
Memory Terminology & Data Representation CSCI 1060 Fall 2006.
Memory A+ Chapter 5 Memory.
Abstraction – Number Systems and Data Representation.
CSCI 1100/1202 January 16, Why do we need variables? To store intermediate results in a long computation. To store a value that is used more than.
Bits & Bytes: How Computers Represent Data
Aloha Aloha What you see: What the computer sees: binary number columns binary number columns
Data Representation S2. This unit covers how the computer represents- Numbers Text Graphics Control.
Binary Arithmetic & Data representation
D ATA REPRESENTATION, BINARY SYSTEM, B IT, B YTE, ASCII C ODE Chapter 3 Mr.Mohammed Rahmath.
Information and Programs. Foundations of Computing Information –Binary numbers –Integers and Floating Point –Booleans (True, False) –Characters –Variables.
Binary Code.
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.
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.
AP: Discuss with a shoulder partner these questions. EQ Question: 1. What does the computer understand? 2. How is information converted to machine language?
Bits & Bytes A bit is the smallest amount of memory used to store information. A bit is represented by either a “0” or a “1”. “Bit” is a contraction of.
Operators & Identifiers The Data Elements. Arithmetic Operators exponentiation multiplication division ( real ) division ( integer quotient ) division.
Working with 8-bit bytes and hexadecimal
The character data type char. Character type char is used to represent alpha-numerical information (characters) inside the computer uses 2 bytes of memory.
GCSE ICT Storing data - Internal memory, backing storage, and measuring memory.
Springfield Technical Community College Center for Business and Technology.
Binary System Presented by Mr. Wilhelmi Internal Representation of Data Input Input  Data that is put into the computer for processing Data Data  The.
CS 111 – Sept. 1 Intro to data representation Binary numbers –Convert binary  decimal –Convert decimal  binary Text –ASCII and Unicode Commitment: –For.
Operators & Identifiers The Data Elements. Arithmetic Operators exponentiation multiplication division ( real ) division ( integer quotient ) division.
Communicationcommunication Created by- Upendra Sharma.
M204 - Data Representation
ISNE101 – Introduction to Information Systems & Network Engineering WEEK 2.
Circuits & Switches. Electricity Formed when an excess of positive or negative particles that are parts of atoms attempts to balance itself=electrical.
Binary 101 Gads Hill School. Aim To strengthen understanding of how computers use the binary number system to store information.
Primitive Data Types 1 In PowerPoint, point at the speaker icon, then click the "Play" button.
HNC COMPUTING - COMPUTER PLATFORMS 1 Micro Teach Binary.
Numbering Systems and Conversion Understand How Computing Devices Work 1.
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.
Understanding Computers
Binary a. express numbers in binary, binary-coded decimal (BCD), octal and hexadecimal;
THE CODING SYSTEM FOR REPRESENTING DATA IN COMPUTER.
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.
Understanding binary Understanding Computers.
Unit 2.6 Data Representation Lesson 2 ‒ Characters
Binary and Logic Computers use electrical signals that are on or off, so they have to see everything as a series of binary numbers. This data is represented.
Binary 1 Basic conversions.
Chapter 1 Introduction to Computer Science
BINARY CODE.
Data Transfer ASCII FILES.
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.
EPSII 59:006 Spring 2004.
Number Systems.
Data Encoding Characters.
How does a computer represent everything using just zeros and ones?
Data Binary Conversion.
Plan Attendance Files Posted on Campus Cruiser Homework Reminder
How Computers Store Data
How to Represent Numbers on a Computer
Learning Intention I will learn how computers store text.
WJEC GCSE Computer Science
Binary.
Chapter 3 - Binary Numbering System
Lecture 36 – Unit 6 – Under the Hood Binary Encoding – Part 2
ASCII and Unicode.
Presentation transcript:

Electronic Memory

THREE WAYS WHERE COMPUTERS BEAT PEOPLE Computers are faster. Computers are more accurate. Computers do not forget.

FIRST FIVE LETTERS IN MORSE CODE A ▀ ▀▀▀ short - long B ▀▀▀ ▀ ▀ ▀ long - short - short - short C ▀▀▀ ▀ ▀▀▀ ▀ long - short - long - short D ▀▀▀ ▀ ▀ long - short - short E ▀ short

ELECTRONIC MEMORY off on 1

THREE COMBINATIONS OF 8 LIGHT BULBS 01000001 (base-2) = 65 (base 10) or char A 1 01000010 (base-2) = 66 (base 10) or char B 1 01000011 (base-2) = 67 (base 10) or char C 1

BITS, BYTES & CODES Bit is a Binary digit that is either 0 (off) or 1 (on). 1 Nibble = 4 bits. 1 Byte = 8 bits. 1 Byte has 256 different numerical combinations. 2 Bytes has 65,536 different numerical combinations. ASCII uses one byte to store one character. Unicode uses two bytes to store one character.

ACTIVITY: BINARY CODE CONVERSION! Take out a sheet of paper and a pencil. Put your name at the top and draw a line down the center of the paper. Write “BASE 10” at the top of the left column, and “BASE 2” at the top of the right column. In the left column, write numbers 1-20, vertically, leaving a blank line in between each number. In the right column, write down the base-2 version (1s and 0s) of the numbers in the left column (1-20). TURN THIS IN BEFORE YOU LEAVE!