Lecture 3 - Digital Representation
ASCII - American Standard Code for Information Interchange (ASCII) is a 7-bit characters code, with value from 0-127. - Representing Sound: Sounds should be converted to binary for computer to process. - Representing Image: When you have image, it is broken up into individual pixels. - Representing Number: A number in a computer system is represented by a string of bits called binary numbers. Number System - Computers use binary number system in two states - on and off. - In computing, we also use: 1. Decimal (Base 10) Number System - Has ten symbols: 0,1,2,3,4,5,6,7,8 and 9, called digits. eg;, 735 = 700 + 30 + 5 = 7*10^2 + 3*10^1 + 5*10^0 2. Binary (Base 2) Number System - Has two symbols: 0 and 1, called bits. eg;. 10110...