5th Meeting “BITS AND BYTES” BIT A bit or binary digit is the basic unit of information in computing and telecommunications. It is the amount of information.

Slides:



Advertisements
Similar presentations
Vocabulary Electronic pulses Transistors Decimal numbers
Advertisements

1 Chapter 2 The Digital World. 2 Digital Data Representation.
Digital Data Representation
Computer Architecture. Central Processing Unit (CPU)- micro processor The Personal Computer.
 The central processing unit (CPU) interprets and executes instructions.  The “brains” of the computer.  The speed of the processor is how fast it.
Processing Data.
Hardware Basics: Inside the Box 2  2001 Prentice Hall2.2 Chapter Outline “There is no invention – only discovery.” Thomas J. Watson, Sr. What Computers.
Binary Expression Numbers & Text CS 105 Binary Representation At the fundamental hardware level, a modern computer can only distinguish between two values,
Chapter 1 Data Storage. 2 Chapter 1: Data Storage 1.1 Bits and Their Storage 1.2 Main Memory 1.3 Mass Storage 1.4 Representing Information as Bit Patterns.
1 Chapter Overview Computer Communication The Computer Bus Objectives  Understand how a computer transmits and receives information.  Explain the principles.
Unit 3—Part A Computer Memory
Bits, Bytes, KiloBytes, MegaBytes, GigaBytes & TeraBytes.
Bits and Bytes.
Programmable Logic Controllers
Bits and Bytes in a computers memory Inside the computer are millions of electronic switches. These are grouped together in bundles of 8. A switch can.
UNIX Unbounded 5 th Edition Amir Afzal Chapter 1 First Things First.
Chapter Two Hardware Basics: Inside the Box. ©1999 Addison Wesley Longman2.2 Chapter Outline What Computers Do A Bit About Bits The Computer’s Core: CPU.
Computer Terminology Chapter 2 CIT History of Computers First known device used to compute was the Abacus 3000 BC 1617 John Napier created a crude.
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.
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.
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.
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.
Resistors Colour Code SI Units. Resistors Used to limit amount of current in circuit There must always be some resistance in a circuit. Three properties.
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 BINARY NUMBER SYSTEM “There are only 10 types of people in this world: Those who understand BINARY and those who do not.”
Data Representation Bits, Bytes, Binary, Hexadecimal.
GCSE ICT Storing data - Internal memory, backing storage, and measuring memory.
Data Storage © 2007 Pearson Addison-Wesley. All rights reserved.
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.
Computer Math CPS120: Binary Representations. Binary computers have storage units called binary digits or bits: Low Voltage = 0 High Voltage = 1 all bits.
Technology in Action Chapter 6 Behind the Scenes: A Closer Look at System Hardware.
Data Storage © 2007 Pearson Addison-Wesley. All rights reserved.
Chapter 2 In Brief…. Chapter 2 …Is a little boring. Sorry. But it contains material you need to be familiar with.
Number Systems Part 2. Counting in Binary DecimalBinary
Millions of electronic pulses move through your computer every second. Computers are capable of processing thousands of functions in the time it takes.
Understanding Computers
Computer Hardware. 7/23/2016M. Eyadat2 Objectives –Explain why most computers are digital –Describe the role of the ALU –List factors that affect performance.
Understanding Binary Understanding Computers. Understanding Computers L3 – Understanding Binary Learning Objectives All will Understand why all data is.
© OCR 2016 Unit 2.6 Data Representation Lesson 1 ‒ Numbers.
Binary and Hard Disk PEOPLE Program
Basic Computer Fundamentals
Understanding binary Understanding Computers.
Computer basics.
3 – Boolean Logic and Logic Gates 4 – Binary Numbers
INFS 211: Introduction to Information Technology
Consider this number: , Ones (7 ones) Tens (no tens)
Computer Memory Digital Literacy.
Information Support and Services
The Central Processing Unit
BITS & BYTES.
Unit 2 Computer Memory Computer Technology (S1 Obj 2-3)
Unit 3—Part A Computer Memory
Data Representation Question: Characters
How do computers work? Storage.
Unit 3—Part A Computer Memory
Ch2: Data Representation
Binary and Hexadecimal Numbers
BITS & BYTES.
How Computers Store Data
Chapter Four Data Representation in Computers By Bezawit E.
Binary System.
Information Technology Department
LO1 – Understand Computer Hardware
Presentation transcript:

5th Meeting “BITS AND BYTES”

BIT A bit or binary digit is the basic unit of information in computing and telecommunications. It is the amount of information that can be stored by a digital device or other physical system that can usually exist in only two distinct states. These may be the two stable positions of an electrical switch, two distinct voltage or current levels allowed by a circuit, two distinct levels of light intensity, two directions of magnetization or polarization, etc. Indeed, the term "bit" is a contraction of binary digit. In information theory, one bit is typically defined as the uncertainty of a binary random variable that is 0 or 1 with equal probability, or the information that is gained when the value of such a variable becomes known.

Multiples of bits

There are several units of information which are defined as multiples of bits, such as byte (8 bits), kilobit (either 1000 or 2 10 = 1024 bits), megabyte (either or 8×2 20 = bits), etc. The symbol for binary digit should be "bit", and this should be used in all multiples, such as "kbit" (for kilobit). However, the letter "b" (in lower case) is widely used too. The letter "B" (upper case) is both the standard and customary symbol for byte. `

BYTE The byte, coined from "bite", but respelled to avoid accidental mutation to "bit", is a unit of digital information in computing and telecommunications. It is an ordered collection of bits, in which each bit denotes the binary value of 1 or 0. The size of a byte is typically hardware dependent, but the modern de facto standard is eight bits, as this is a convenient power of two. Many types of applications use variables representable in eight or fewer bits, and processor designers optimize for this common usage. The byte size and byte addressing are often used in place of longer integers for size or speed optimizations in microcontrollers and CPUs.

Unit Symbol Or Abbreviation Common Uses The byte is also defined as a data type in certain programming languages. The C and C++ programming languages, for example, define byte as an "addressable unit of data large enough to hold any member of the basic character set of the execution environment".

Prefixes for bit and byte multiples Unit symbol or abbreviation

Group Discussion 1.How many digits does a binary system use? 2.What is the difference between binary notation and the decimal system? Give some examples. 3.What is a collection of eight bits called? 4.One kilobyte (1K) equals 1,024 bytes. Can you work out the value of these units? (kilo-: one thousand). 1 megabyte = Bytes/1,024 kilobytes (mega-:one million). 1 gigabyte = bytes/1,024 megabytes (giga-: onethousand million). 5. What does the acronym ‘ASCII’ stand for? What is the purpose of this code?