Explosion of Bits Everything is digitized – can store every communication generated by humans Government and other institutions of society are deciding.

Slides:



Advertisements
Similar presentations
Chapter 4: Representation of data in computer systems
Advertisements

Base 10 Denary Decimal
CSC 110 – Intro to Computing Lecture 3: Converting between bases & Arithmetic in other bases.
Reminders and Announcements Projects due Thursday, May 5, 2:00 PM by Keep consulting Maja and me for advice if you run into roadblocks or want to.
Computer Systems 1 Fundamentals of Computing
Number Systems and Codes In PLC
Digital Data Patrice Koehl Computer Science UC Davis.
Topic 4 Computer Mathematics and Logic
Data Storage Introduction to computer, 2nd semester, 2010/2011 Mr.Nael Aburas Faculty of Information Technology Islamic.
Communications Technology 2104 Mercedes Lahey. Bit 1. bit=From a shortening of the words “binary digit” 2. the basic unit of information for computers.
Computer Storage & Representing Numbers CE 311 K - Introduction to Computer Methods Daene C. McKinney.
Data and Program Representation
Computer Systems Chapter 1 Pages Hardware-physical pieces Key hardware components in a computer system: The physical parts. – Central processing.
Digital Media Dr. Jim Rowan ITEC Monday, August 27.
Digital Media Dr. Jim Rowan ITEC Monday, August 27.
IT253: Computer Organization
CS 104 – Fall 2011 Exploring Computer Science Lecture 2: August 29, Blown to Bits - CS Unplugged.
Supplemental Chapter Number Bases
Agenda Last class: Software and extensions Today: Memory –How computers store data –Number systems –Digitization.
Explosion of Bits Everything is digitized – can store every communication generated by humans Government and other institutions of society are deciding.
The Hexadecimal Number System and Memory Addressing ISAT 121.
CS 101 – Aug. 31 Interpreting binary  decimal √ Decimal  binary Shorthand ways of expressing binary –Octal –“Hex” Negative numbers.
Working with 8-bit bytes and hexadecimal
How We Measure Memory. Learning Goal Today we are going to learn how the computer stores information.
Networking for Home and Small Businesses –.  Explain the binary representation of data.
Computer Programming 12 Mr. Jean February 5 th, 2014.
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???
2.1.4 Data Representation Units.
Binary Decimal Hexadecimal
Computer Studies Today Chapter 19 1 Chapter 19. Computer Studies Today Chapter 19 2 »Information stored in a computer is in two states: –ON –OFF.
The Hexadecimal System is base 16. It is a shorthand method for representing the 8-bit bytes that are stored in the computer system. This system was chosen.
CMSC 1041 Binary / Hex Binary and Hex The number systems of Computer Science.
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.
Number Systems Decimal Can you write 12,045 in expanded form? Base? Allowable digits for each place?
© OCR 2016 Unit 2.6 Data Representation Lesson 1 ‒ Numbers.
Week 3 - Monday.  What did we talk about last time?  Video games  Lab 2.
Chapter 1: Data Storage.
Computer Science 210 Computer Organization
Binary and Hard Disk PEOPLE Program
Lecturer: Santokh Singh
Computer Science: An Overview Eleventh Edition
Unit 2.6 Data Representation Lesson 1 ‒ Numbers
© 2003, Cisco Systems, Inc. All rights reserved.
Number Systems and Codes
Data Representation N4/N5.
Consider this number: , Ones (7 ones) Tens (no tens)
Week 3 - Monday CS 113.
Assembly Language (CSW 353)
What is a byte? What is it? How would you use it?
Lesson Objectives Aims
CS115/MAS115: Computing for The Socio-Techno Web
Representation of data in computer systems
3 - STORAGE: DATA CAPACITY CALCULATIONS
Denary to Binary Numbers & Binary to Denary
Why use Binary? There are only four rules for addition in binary compared to 100 in decimal [0+0=0 ; 0+1=1 ; 1+0=1; 1+1=10]
Data Storage Introduction to computer, 2nd semester, 2010/2011
Binary Quiz UIN: ____________________
Data Representation Numbers
Connected sources and available data
Computer Science 210 Computer Organization
Binary, Octal and Hex Numbers Copyright Thaddeus Konar
(return of the…) Data blast
Binary Lesson 3 Hexadecimal
Binary Lesson 3 Hexadecimal
Why computers use binary
Comp Org & Assembly Lang
Counting, Conversion & Koans
Presentation transcript:

Explosion of Bits Everything is digitized – can store every communication generated by humans Government and other institutions of society are deciding how to use all this digitized information. Once stored – easy to duplicate instantly Privacy no longer guaranteed (private and public video cameras, photos, etc.) How easily do you give up privacy? ITEC 102

Computing Math Bits 0/1, T/F, on/off 8 bits in a byte Kilobytes (103 ), megabytes (106 ), gigabytes (109 ) Binary (base 2), octal (base 8), and hexadecimal (base 16) Converting between the bases. Binary to octal – group by 3. Binary to hex – group by 4 Converting from binary, octal, and hex to decimal - expand Megabyte: 1 minute of 128 kb/s of MP3 compressed music 6 seconds of uncompressed CD audio 500 page/ 2000 chars/page book ITEC 102

Boolean Truth Tables NOT operation – proposition value is inverted AND operation – All proposition values must be true for a true expression OR operation – At least one proposition value must be T for a T expression _ P | Q | P | P ^ Q | P V Q F F T F F F T T F T T F F F T T T F T T ITEC 102

The Koans of Bits It’s all just bits - at the lowest level (pictures, words, etc.) Perfection is normal – error detection and correction There is want in the midst of plenty – if it cannot be found quickly it is as though it does not exist. Processing is power – Moore’s law (IC density doubles every 2 years) More of the same can be a whole new thing – exponential growth gets big fast. Nothing goes away – once stored can be stored forever. Bits move faster than thought – hard to manage dispersion of information. Information Technology is neither good nor bad – its’ how it is used that must be considered ethically. ITEC 102