The Computer: A Digital Tool

Slides:



Advertisements
Similar presentations
Computer Codes Rohit Khokher. Computer Codes Data types NumericNonnumeric IntegerRealAlphabet A, B, C, …,Z a, b, c,…,z Digits 0,…,9 Special Characters.
Advertisements

What is a Computer? A device that can run under specific directions What is a Program? –A specific set of instructions given to the computer –Requires.
Digital Circuit Why Digital Circuit? – Digital signals ( 0 and 1) are very easy to handle with electronic circuits only 2 states needed: Switch ON or OFF,
1. The Role of the Algorithms in Computer Hsu, Lih-Hsing
Binary numbers. 1 Humans count using decimal numbers (base 10) We use 10 units: 0, 1, 2, 3, 4, 5, 6, 7, 8 and (5.
 A binary number is a number that includes only ones and zeroes.  The number could be of any length  The following are all examples of binary numbers.
Number Systems and Codes In PLC
1 Survey of Computer Science CSCI 110, Spring 2011 Lecture 16 Digital Circuits, binary Numbers.
Aloha Aloha What you see: What the computer sees: binary number columns binary number columns
NAME – vivek singh. Class – VIII. WHAT IS COMPUTER ? A COMPUTER IS AN ELECTRONIC MACHINE. THAT CONVERT DATA INTO MEANINGFUL INFORMATION. IT CALCULATED.
Binary Code.
UNIVERSAL COLLEGE OF ENGINEERING AND TECHNOLOGY PREPARED BY:- Chirag Parmar ( ) Kashish Soni ( ) Maitrey Bhatt( )
Binary Code A Base 2 Number System. Who created binary? George Boole An English mathematician.
1-1 Lecture 1 Class Overview and Appendix A -- Number Systems.
New Mexico Computer Science for All Author: Ed Angel Title: Bits and Bytes.
Number System. Number Systems Important Number systems – Decimal – Binary – Hexadecimal.
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.
Lesson 8 – Binary Numbers Computer Programming 12.
Bits and Bytes. Decimal Numbers 6,357 has four digits -base-10 (6 * 1000) + (3 * 100) + (5 * 10) + (7 * 1) = = 6357 (6 * 10^3) + (3.
Universal college of engineering & technology. .By Harsh Patel)
1 Positive numbers are well understood An n-bit number represents numbers from 0 to 2 n -1 n+m bits can be used to represent n-bit integer and m-bit fraction.
Binary A double zero educational presentation. Binary Basics Binary is the language computers use Only 1’s and 0’s can be found in Binary Very large numbers.
Lecture 2 Numbers and number systems. Some material from the last lecture Electronic computers represent information as voltage levels. To make the computer.
Computer Science I CSCI Summer 2009 David E. Goldschmidt, Ph.D.
Digital Data-Acquisition Systems Since the late 1950s, computers have been used to monitor, and in many cases to control, the performance of large process.
Chapter 1. The Role of the Algorithms in Computer.
M204 - Data Representation
Lecture (8) Programming Design Dr. Emad Elsharkawy Eng- Omar Salah Dr:Emad Elsharkawy 1 Saturday, 13 February 2016.
Binary 101 Gads Hill School. Aim To strengthen understanding of how computers use the binary number system to store information.
Section 5 Digital Electronic Circuits. Chapter 32 Binary Number System.
Fundamental Digital Electronics
Memory, Bits, & Bytes. Memory Part of the computer where programs and data are stored. Read and written (changed). Bit – Binary digit – Basic unit of.
CS 111 – Aug. 26 Review: How might an airline use IT? Chapter 0 –Computer origins –Algorithms –Abstraction Commitment for next day: –Please read section.
Number Systems Decimal Can you write 12,045 in expanded form? Base? Allowable digits for each place?
GCSE Computing – Topic 4 Lesson 1 – Units ASPIRE TO: describe why computers store data in the format they do CHALLENGE TO: define the different the types.
WHAT IS BINARY? Binary is a number system that only uses two digits: 1 and 0. Any information that processed by a computer it is put into sequence of.
Data Representation Lesson 2 Binary KS3 COMPUTING KS3 Computing
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 numbers: Week 7 Lesson 1
Error Correcting Code.
Representation of data in computer systems
Base ‘b’ number for i = 0 to n – 1 for an n digit quantity
Chapter 2 – Computer hardware
Binary & Hexidecimal Numbers
Number Systems.
Binary Code  
BINARY SYSTEM.
Representing Data How does a computer represent data?
Computers & Programming Languages
2-Digit Subtraction.
Digital Concepts for PLCs
Quantum Computing Dorca Lee.
Binary Lesson 3 Hexadecimal
Born to be Programmer TeguhSutanto, M.Kom.
UNIVERSITY OF MASSACHUSETTS Dept
The Computer: A Digital Tool
The Computer: A Digital Tool
Binary Lesson 3 Hexadecimal
Chapter 2: Number Systems
Binary Lesson 3 Hexadecimal
How Computers Store Data
DIGITAL ELECTRONICS B.SC FY
Binary Lesson 3 Hexadecimal
Logarithms.
The basics of any electronic device means either electricity is flowing or it is not i.e. a switch is either on or off Computers are electronic devices.
Binary Lesson 4 Hexadecimal and Binary Practice
Hexadecimal.
Number Systems.
Networks & I/O Devices.
1 1. Binary Basics Year 8 Unit 1 Bitmap Graphics.
Presentation transcript:

The Computer: A Digital Tool

The computer A computer is a computationally complete system - capable of solving all of the problems that can be solved algorithmically. To be practically applicable, however, it not only has to be complete, but to be fast and reliable as well. The electronic computer serves this purpose by means of digital technology.  

Digital Technology Based upon bi-stable electronic components Always in 1 of 2 states: conventional to represent these states using digits 0 and 1 Relationship between electronic components and the binary number system.

Binary system (1) Uses only two digits: 0 and 1, to represent numbers. Larger numbers are represented as sequences of digits, in which each position in the sequence is associated with a different weight.

Value of digit sequence: 128+0+32+0+0+0+2+1 = 163 Binary system (2) This sequence of digits 10100011 represents the number 163: Digit sequence: 10100011 Value of digit sequence: 128+0+32+0+0+0+2+1 = 163

Binary system (3) A single Binary digIT is called a bit. In practice, the circuits of contemporary computers are commonly based upon sequences of 8 bits, called bytes. The largest value that can be represented by a single byte is 255 (digit sequence: 1 1 1 1 1 1 1 1):

Binary system (4) Try working out the sequences that give you a value of : (i) 162  (ii) 97