SlideShare a Scribd company logo
Basics of Computer For Begginers
Overview
 What is a Computer?
 Evolution of Computer
 Generations of Computer
 Classification of Computer
 Block Diagram of Computer
Basics of Computer For Begginers
P
R
O
C
E
S
S
O
R
Input Data Output Data
Alphanume
ric
Alphanume
ric
Binary
Digits
Evolution Of Computer
ERA
Mechanical Electrical
ABACU
S
Blaise
Pascal
Calculato
r
Electric
Motor
Calculatin
g
Computer
500
BC
1642
1941
Konard
Zuse
1889
Herman
Hollerith
Generations of Computer
Classification of Computer
Super
Computer
Main
Frame
Computer
Mini
Computer
Micro
Comput
er
Desktop
Compute
r
Laptop
Palmtop/
PDA/
Digital
Notes
PERIPHERALS
BASIC BLOCK DIAGRAM
© Oxford University Press 2013. All rights reserved.
Differences
CPUMost of the processing takes place in CPU. During
processing, it locates and executes the program
instructions.
It also fetches data from memory and input/output
devices and sends data back.
Registers
Control
Unit
ALU
Basics of Computer For Begginers
HardwareHardware is the physical components of a computer
that includes all mechanical, electrical, electronic and
magnetic parts attached to it.
Input and Output
Devices
CPU
Memory Storage
Devices
Interface Unit
Mouse
JoyStic
k
Touchpa
d
Webca
m
Scanne
r
Monito
r
Printe
r
Projector
s
LCD
Panels
Speaker
s
Basics of Computer For Begginers
OUTPUT DEVICES
VDU
Printer
Plotters
Speakers
Speech Synthesizer
SOFTWARE
 Set of machine-readable instructions that directs a
computer's processor to perform specific operations.
Software
System EmbeddedApplication
Computer
to
operate
Uses
compute
r to
perform
Control
Machine
s or
devices
SOFTWARE COMPONENTS
APPLICATION
SOFTWARE
Database
Desktop
Publication
Word
Processing Spreadsheets
Payroll
Presentation
tools
Multimedia
Applications
Memory
The memory unit is composed of an ordered
sequence of storage cells, each capable of storing
one byte of data.
Primary Memory
Secondary Memory
Basics of Computer For Begginers
PRIMARY MEMORY
Primary memory is considered as a main memory
that is accessed directly by the computer,
so as to store and retrieve.
loses all its data when the power
is turned off.
Two Technologies: RAM and ROM
Much Faster
and costlier than Secondary memory
RAM
Every computer comes with a certain amount of physical
memory which is actually chips that hold data.
part of hardware that stores operating system’s application
programs and currently running processes that can be
accessed randomly, i.e. in any order that the user desires.
Data in RAM stays for only as long as the computer is
running, and gets deleted as soon as computer is switched
off.
RAM usually comes in the form of microchips of different
sizes such as 256MB, 512MB, 1GB, 2GB etc.
ROM
Every computer comes fitted with this memory that
holds instructions for starting up the computer.
 data written permanently on it and is not reusable.
These are generally in the form of CD-ROM or Floppy
Disk that can load the OS to the RAM.
SECONDARY MEMORY
Secondary memory is not directly accessed through CPU .
The secondary memory is accessible in the form of Mass
storage devices such as hard disk, memory chips, Pen
drive, floppy disk storage media, CD and DVD.
The information can be retrieved even if the power is
turned off because the data will not be destructed until
and unless the user erases it.
STORAGE DEVICES
Hard disk drivers
Internal high capacity drivers
Stores Operating System
High Speed,Faster
Capacity-40/80GB
Floppy Disk
Small Disks
Portable
Very Slow
Capacity 1.44MB
CD ROM
Capacity-650MB and more…
DVD Drives
Capacity-17GB
Faster than CD not than HDD
Impact on Computer Performance
CPU Speed
RAM size
Hard Disk Drive Capacity
INTERFACE UNIT
The interface unit interconnects the CPU with
memory and also with the various input/output
(I/O) devices.
It is a set of parallel wires or lines which connects all the
internal computer components to the CPU and main
memory.
Depending on the type of data transmitted, a bus can
be classified into the following three types:
 Data bus : The bus used to carry actual data.
 Address bus memory or Input/output device :
Addresses travel via the address bus.
 Control bus: This bus carries control information
between the CPU and other devices within the
computer.
BUS BASED MEMORY
ORGANIZATION
MOTHER BOARD
MICROSOFT EXCEL
MEN
U BAR
TOOL
BAR
RIBBO
N
FORMULA
BAR
WOR
KSHE
ET
CELL
NUMBER SYSTEM
BINARY HEXADECIMAL
DECIMAL
One digit in hex corresponds to four binary digits (bits), so the
internal representation of one byte can be represented
either by eight binary digits or two hexadecimal digits.
Less commonly used is the octal (base 8) number system,
where one digit in octal corresponds to three binary digits
(bits).
POSITIONAL NUMBER SYSTEM
The actual number of symbols used in a positional
number system depends on its base (also called the
radix).
The highest numerical symbol always has a value of
one less than the base.
The decimal number system has a base of 10, so the
numeral with the highest value is 9; the octal number
system has a base of 8, so the numeral with the
highest value is 7, the binary number system has a
base of 2, so the numeral with the highest value is
1, etc.
DECIMAL SYSTEM
1 2 7 510
5 x 100 = 5 x 1 = 5
7 x 101 = 7 x 10 = 70
2 x 102 = 2 x 100 = 200
1 x 103 = 1 x 1000 = 1000
------
1275 10
Each position represents a specific power of base 10.
=1
0
10
3
10
0
n
1
10
0
n
TRY THIS: Expand the following decimal number:
5 1 3 010
BINARY SYSTEM
Each position of the binary number represents a
successive power of two.
Decimal Binary Decimal Binary
0 0 16 10000
1 1 17 10001
2 10 18 10010
3 11 19 10011
4 100 20 10100
5 101 21 10101
6 110 22 10110
7 111 23 10111
8 1000 24 11000
9 1001 25 11001
10 1010 26 11010
11 1011 27 11011
12 1100 28 11100
13 1101 29 11101
14 1110 30 11110
15 1111 31 11111
BINARY to DECIMAL
To determine the value of a binary number (10012, for
example), we can expand the number using the
positional weights as follows:
1 0 0 12
1 x = 1 x 1 = 1
0 x = 0 x 2 = 0
0 x = 0 x 4 = 0
1 x = 1 x 8 = 8
------
9 10
0
2
1
2
2
2
3
2
TRY THIS: Convert the following binary numbers
to their decimal equivalents:
(a) 1 1 0 0 1 1 02
DECIMAL to BINARY
Remainder Method
(1) Divide the decimal number by the base (in the
case of binary, divide by 2).
(2) Indicate the remainder to the right.
(3) Continue dividing into each quotient (and
indicating the remainder) until the divide operation
produces a zero quotient.
(4) The base 2 number is the numeric remainder
reading from the last division to the first (if you start
at the bottom, the answer will read from top to
bottom).
TRY THIS: Convert the following decimal
numbers to their binary equivalents:
(a) 4910 (b) 2110
BINARY ADDITION
Adding two binary numbers together is easy, keeping
in mind the following four addition rules:
(1) 0 + 0 = 0
(2) 0 + 1 = 1
(3) 1 + 0 = 1
(4) 1 + 1 = 10
BINARY SUBTRACTION
11010101 - 1001011
(1) Compute the one's complement of 10010112 by
subtracting each digit from 1 (note that a leading
zero was added to the 7-
digit subtrahend to make it the same size as the 8-digit
minuend):
1 1 1 1 1 1 1 1
- 0 - 1 - 0 - 0 - 1 - 0 - 1 - 1
1 0 1 1 0 1 0 0
2
2 2
MINUEND - SUBTRAHEND = DIFFERENCE
(2) Add 1 to the one's complement of the subtrahend,
giving the two's complement of the subtrahend:
1 0 1 1 0 1 0 0
+ 1
1 0 1 1 0 1 0 1
(3) Add the two's complement of the subtrahend to the
minuend and drop the high-order 1, giving the
difference:
1 1 1 1 1
1 1 0 1 0 1 0 1
+ 1 0 1 1 0 1 0 1
OCTAL NUMBER SYSTEM
The base of the octal number system is eight, so each
position of the octal number represents a successive
power of eight. From right to left, the successive
positions of the octal number are weighted 1, 8, 64,
512, etc. A list of the first
several powers of 8 follows:
80= 1 = 8 = 64 83= 512 …84 = 4096 85 = 32768
18
18
28
OCTAL to DECIMAL
3 6 78
7 x 80 = 7 x 1 = 7
6 x 81 = 6 x 8 = 48
3 x 82 = 3 x 64 = 192
------
247 10
TRY THIS: Convert the following octal numbers
to their decimal equivalents:
(a) 5 3 68
DECIMAL to OCTAL
(1) Divide the decimal number by the base (in the case
of octal, divide by 8).
(2) Indicate the remainder to the right.
(3) Continue dividing into each quotient (and
indicating the remainder) until the divide operation
produces a zero quotient.
(4) The base 8 number is the numeric remainder
reading from the last division to the first (if you start
at the bottom, the answer will read from top to
bottom).
HEXADECIMAL SYSTEM
The hexadecimal number system uses not only the
Arabic numerals 0 through 9, but also uses the letters
A, B, C, D, E, and F to represent the equivalent of 1010
through 1510, respectively.
HEXADECIMAL to DECIMAL
How to convert from hex to decimal
A regular decimal number is the sum of the digits
multiplied with its power of 10.
Example #1
137 in base 10 is equal to each digit multiplied with its
corresponding power of 10:
13710 = 1×102
+3×101
+7×100
= 100+30+7
COMPUTER CHARACTER SET
AND DATA REPRESENTATION
ASCII (pronounced "as-key", stands for American
Standard Code for Information Interchange) is
(used on most minicomputers and PCs)
32 through 127 of the ASCII character set, which
encompass (letters, numbers, and special characters).
0-31---->Control Characters(modems, printers, and
keyboards work)Eg:Printers character 12 for “form
feed”
128-255Box Drawing Characters Eg:Making dialog
box,non-GUI..
EBCDIC (pronounced "eb-suh-dick", stands for
Extended Binary Coded Decimal Interchange
Code)
(used on IBM mainframes)
FLOW CHART
A flow chart is a graphical or symbolic representation
of a process.
Each step in the process is represented by a different
symbol and contains a short description of the
process step.
The flow chart symbols are linked together with
arrows showing the process flow direction.
Basics of Computer For Begginers

More Related Content

PPT
Binary code - Beginning
PPTX
Conversion binary to decimal
PPT
Binary ppt tr
DOCX
Data representation in a computer
PPT
Ch3
PDF
1.1.1 binary systems By Zak
PPT
Cit 1101 lec 02
Binary code - Beginning
Conversion binary to decimal
Binary ppt tr
Data representation in a computer
Ch3
1.1.1 binary systems By Zak
Cit 1101 lec 02

What's hot (20)

PPT
Number system
PPT
Kaizen cso002 l1
PPTX
Mrs. Noland's Binary System ppt
PPTX
PPTX
Number System in CoMpUtEr
PPTX
Binary ,octa,hexa conversion
PPT
Quantitative Analysis 2
PPTX
Number system
PPT
Lecture 2
PPTX
Number Systems Basic Concepts
PDF
01 number systems-students
PPTX
Introduction to Software Engineering: Lecture 1 introduction i
PPTX
Number System
PPT
Number System
PPT
PDF
Datarepresentation2
PDF
Chapter 03 number system 2o-p
PDF
Chapter 03 number system 3o-p
PPTX
Binary, Decimal and Hexadecimal
PDF
Chapter 03 number system
Number system
Kaizen cso002 l1
Mrs. Noland's Binary System ppt
Number System in CoMpUtEr
Binary ,octa,hexa conversion
Quantitative Analysis 2
Number system
Lecture 2
Number Systems Basic Concepts
01 number systems-students
Introduction to Software Engineering: Lecture 1 introduction i
Number System
Number System
Datarepresentation2
Chapter 03 number system 2o-p
Chapter 03 number system 3o-p
Binary, Decimal and Hexadecimal
Chapter 03 number system
Ad

Viewers also liked (16)

PPT
e marketing in brief
PPTX
computer based training
PPT
Basic concept of computer network
PDF
Chapter 01 introduction to Computer
PPT
Computer Based Training[1]
PPT
Computer network basic concepts
PPT
Chapter1 introduction to computer systems
PDF
01 - Introduction to Computer
PDF
Introduction To Computer
PPTX
Computer Education Curriculum in Nursery and Primary School
PPT
An introduction to Computer Technology
PPTX
Introduction to computer
PPT
Basic computer class 1
PPT
Computer Basics 101 Slide Show Presentation
PDF
Introduction to Computers
PPT
basics of computer system ppt
e marketing in brief
computer based training
Basic concept of computer network
Chapter 01 introduction to Computer
Computer Based Training[1]
Computer network basic concepts
Chapter1 introduction to computer systems
01 - Introduction to Computer
Introduction To Computer
Computer Education Curriculum in Nursery and Primary School
An introduction to Computer Technology
Introduction to computer
Basic computer class 1
Computer Basics 101 Slide Show Presentation
Introduction to Computers
basics of computer system ppt
Ad

Similar to Basics of Computer For Begginers (20)

PPTX
Introduction to computers
PPTX
Introduction to digital computers and Number systems.pptx
PDF
INTRODUCTION TO NUMBER SYSTEMS 2024-25.pdf
PPTX
programming volume 1 lesson 2 businesss
DOC
Chapter 4--Data representation Method.doc
PPTX
Part#1_Logic_Design.pptx LOGIC Circuit Course
PPTX
ARCsxfhcjkvmnfxcgbfgcxhvbxdfzxcgbfxgcvbnx3.pptx
PPTX
CST-20363-Session 1-In the Bitginning
PPTX
02 Chapter 2 Data representation and organization of computer system_V4 (2).pptx
PPT
1. basic theories of information
PDF
COA Unit-1.pdf
PPT
PDF
Basics of computer and Number conversions.pdf
PPTX
Number system computer fundamental
PPT
Number system on various number tyoes decimal
PDF
form-3-computer studies summarized NOTES.pdf
PPTX
Microproccesor and Microcontrollers hardware basics
RTF
DCF QNA edited
PDF
Lec 02
PPT
DLD_Lecture_notes2.ppt
Introduction to computers
Introduction to digital computers and Number systems.pptx
INTRODUCTION TO NUMBER SYSTEMS 2024-25.pdf
programming volume 1 lesson 2 businesss
Chapter 4--Data representation Method.doc
Part#1_Logic_Design.pptx LOGIC Circuit Course
ARCsxfhcjkvmnfxcgbfgcxhvbxdfzxcgbfxgcvbnx3.pptx
CST-20363-Session 1-In the Bitginning
02 Chapter 2 Data representation and organization of computer system_V4 (2).pptx
1. basic theories of information
COA Unit-1.pdf
Basics of computer and Number conversions.pdf
Number system computer fundamental
Number system on various number tyoes decimal
form-3-computer studies summarized NOTES.pdf
Microproccesor and Microcontrollers hardware basics
DCF QNA edited
Lec 02
DLD_Lecture_notes2.ppt

Recently uploaded (20)

PDF
R24 SURVEYING LAB MANUAL for civil enggi
DOCX
ASol_English-Language-Literature-Set-1-27-02-2023-converted.docx
DOCX
573137875-Attendance-Management-System-original
PPTX
additive manufacturing of ss316l using mig welding
PDF
Enhancing Cyber Defense Against Zero-Day Attacks using Ensemble Neural Networks
PPTX
CH1 Production IntroductoryConcepts.pptx
PPTX
Internet of Things (IOT) - A guide to understanding
PPTX
MCN 401 KTU-2019-PPE KITS-MODULE 2.pptx
PDF
Model Code of Practice - Construction Work - 21102022 .pdf
PDF
keyrequirementskkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
PPTX
FINAL REVIEW FOR COPD DIANOSIS FOR PULMONARY DISEASE.pptx
PPT
CRASH COURSE IN ALTERNATIVE PLUMBING CLASS
PPTX
UNIT-1 - COAL BASED THERMAL POWER PLANTS
PDF
BMEC211 - INTRODUCTION TO MECHATRONICS-1.pdf
PPTX
Engineering Ethics, Safety and Environment [Autosaved] (1).pptx
PPTX
Construction Project Organization Group 2.pptx
PPTX
M Tech Sem 1 Civil Engineering Environmental Sciences.pptx
PPTX
KTU 2019 -S7-MCN 401 MODULE 2-VINAY.pptx
PDF
Well-logging-methods_new................
PPTX
Infosys Presentation by1.Riyan Bagwan 2.Samadhan Naiknavare 3.Gaurav Shinde 4...
R24 SURVEYING LAB MANUAL for civil enggi
ASol_English-Language-Literature-Set-1-27-02-2023-converted.docx
573137875-Attendance-Management-System-original
additive manufacturing of ss316l using mig welding
Enhancing Cyber Defense Against Zero-Day Attacks using Ensemble Neural Networks
CH1 Production IntroductoryConcepts.pptx
Internet of Things (IOT) - A guide to understanding
MCN 401 KTU-2019-PPE KITS-MODULE 2.pptx
Model Code of Practice - Construction Work - 21102022 .pdf
keyrequirementskkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
FINAL REVIEW FOR COPD DIANOSIS FOR PULMONARY DISEASE.pptx
CRASH COURSE IN ALTERNATIVE PLUMBING CLASS
UNIT-1 - COAL BASED THERMAL POWER PLANTS
BMEC211 - INTRODUCTION TO MECHATRONICS-1.pdf
Engineering Ethics, Safety and Environment [Autosaved] (1).pptx
Construction Project Organization Group 2.pptx
M Tech Sem 1 Civil Engineering Environmental Sciences.pptx
KTU 2019 -S7-MCN 401 MODULE 2-VINAY.pptx
Well-logging-methods_new................
Infosys Presentation by1.Riyan Bagwan 2.Samadhan Naiknavare 3.Gaurav Shinde 4...

Basics of Computer For Begginers

  • 2. Overview  What is a Computer?  Evolution of Computer  Generations of Computer  Classification of Computer  Block Diagram of Computer
  • 4. P R O C E S S O R Input Data Output Data Alphanume ric Alphanume ric Binary Digits
  • 5. Evolution Of Computer ERA Mechanical Electrical ABACU S Blaise Pascal Calculato r Electric Motor Calculatin g Computer 500 BC 1642 1941 Konard Zuse 1889 Herman Hollerith
  • 10. © Oxford University Press 2013. All rights reserved. Differences
  • 11. CPUMost of the processing takes place in CPU. During processing, it locates and executes the program instructions. It also fetches data from memory and input/output devices and sends data back. Registers Control Unit ALU
  • 13. HardwareHardware is the physical components of a computer that includes all mechanical, electrical, electronic and magnetic parts attached to it. Input and Output Devices CPU Memory Storage Devices Interface Unit Mouse JoyStic k Touchpa d Webca m Scanne r Monito r Printe r Projector s LCD Panels Speaker s
  • 16. SOFTWARE  Set of machine-readable instructions that directs a computer's processor to perform specific operations. Software System EmbeddedApplication Computer to operate Uses compute r to perform Control Machine s or devices
  • 19. The memory unit is composed of an ordered sequence of storage cells, each capable of storing one byte of data. Primary Memory Secondary Memory
  • 21. PRIMARY MEMORY Primary memory is considered as a main memory that is accessed directly by the computer, so as to store and retrieve. loses all its data when the power is turned off. Two Technologies: RAM and ROM Much Faster and costlier than Secondary memory
  • 22. RAM Every computer comes with a certain amount of physical memory which is actually chips that hold data. part of hardware that stores operating system’s application programs and currently running processes that can be accessed randomly, i.e. in any order that the user desires. Data in RAM stays for only as long as the computer is running, and gets deleted as soon as computer is switched off. RAM usually comes in the form of microchips of different sizes such as 256MB, 512MB, 1GB, 2GB etc.
  • 23. ROM Every computer comes fitted with this memory that holds instructions for starting up the computer.  data written permanently on it and is not reusable. These are generally in the form of CD-ROM or Floppy Disk that can load the OS to the RAM.
  • 24. SECONDARY MEMORY Secondary memory is not directly accessed through CPU . The secondary memory is accessible in the form of Mass storage devices such as hard disk, memory chips, Pen drive, floppy disk storage media, CD and DVD. The information can be retrieved even if the power is turned off because the data will not be destructed until and unless the user erases it.
  • 25. STORAGE DEVICES Hard disk drivers Internal high capacity drivers Stores Operating System High Speed,Faster Capacity-40/80GB
  • 26. Floppy Disk Small Disks Portable Very Slow Capacity 1.44MB CD ROM Capacity-650MB and more… DVD Drives Capacity-17GB Faster than CD not than HDD
  • 27. Impact on Computer Performance CPU Speed RAM size Hard Disk Drive Capacity
  • 28. INTERFACE UNIT The interface unit interconnects the CPU with memory and also with the various input/output (I/O) devices. It is a set of parallel wires or lines which connects all the internal computer components to the CPU and main memory.
  • 29. Depending on the type of data transmitted, a bus can be classified into the following three types:  Data bus : The bus used to carry actual data.  Address bus memory or Input/output device : Addresses travel via the address bus.  Control bus: This bus carries control information between the CPU and other devices within the computer.
  • 34. NUMBER SYSTEM BINARY HEXADECIMAL DECIMAL One digit in hex corresponds to four binary digits (bits), so the internal representation of one byte can be represented either by eight binary digits or two hexadecimal digits. Less commonly used is the octal (base 8) number system, where one digit in octal corresponds to three binary digits (bits).
  • 35. POSITIONAL NUMBER SYSTEM The actual number of symbols used in a positional number system depends on its base (also called the radix). The highest numerical symbol always has a value of one less than the base. The decimal number system has a base of 10, so the numeral with the highest value is 9; the octal number system has a base of 8, so the numeral with the highest value is 7, the binary number system has a base of 2, so the numeral with the highest value is 1, etc.
  • 36. DECIMAL SYSTEM 1 2 7 510 5 x 100 = 5 x 1 = 5 7 x 101 = 7 x 10 = 70 2 x 102 = 2 x 100 = 200 1 x 103 = 1 x 1000 = 1000 ------ 1275 10 Each position represents a specific power of base 10. =1 0 10 3 10 0 n 1 10 0 n
  • 37. TRY THIS: Expand the following decimal number: 5 1 3 010
  • 38. BINARY SYSTEM Each position of the binary number represents a successive power of two. Decimal Binary Decimal Binary 0 0 16 10000 1 1 17 10001 2 10 18 10010 3 11 19 10011 4 100 20 10100 5 101 21 10101 6 110 22 10110 7 111 23 10111 8 1000 24 11000 9 1001 25 11001 10 1010 26 11010 11 1011 27 11011 12 1100 28 11100 13 1101 29 11101 14 1110 30 11110 15 1111 31 11111
  • 39. BINARY to DECIMAL To determine the value of a binary number (10012, for example), we can expand the number using the positional weights as follows: 1 0 0 12 1 x = 1 x 1 = 1 0 x = 0 x 2 = 0 0 x = 0 x 4 = 0 1 x = 1 x 8 = 8 ------ 9 10 0 2 1 2 2 2 3 2
  • 40. TRY THIS: Convert the following binary numbers to their decimal equivalents: (a) 1 1 0 0 1 1 02
  • 41. DECIMAL to BINARY Remainder Method (1) Divide the decimal number by the base (in the case of binary, divide by 2). (2) Indicate the remainder to the right. (3) Continue dividing into each quotient (and indicating the remainder) until the divide operation produces a zero quotient. (4) The base 2 number is the numeric remainder reading from the last division to the first (if you start at the bottom, the answer will read from top to bottom).
  • 42. TRY THIS: Convert the following decimal numbers to their binary equivalents: (a) 4910 (b) 2110
  • 43. BINARY ADDITION Adding two binary numbers together is easy, keeping in mind the following four addition rules: (1) 0 + 0 = 0 (2) 0 + 1 = 1 (3) 1 + 0 = 1 (4) 1 + 1 = 10
  • 44. BINARY SUBTRACTION 11010101 - 1001011 (1) Compute the one's complement of 10010112 by subtracting each digit from 1 (note that a leading zero was added to the 7- digit subtrahend to make it the same size as the 8-digit minuend): 1 1 1 1 1 1 1 1 - 0 - 1 - 0 - 0 - 1 - 0 - 1 - 1 1 0 1 1 0 1 0 0 2 2 2 MINUEND - SUBTRAHEND = DIFFERENCE
  • 45. (2) Add 1 to the one's complement of the subtrahend, giving the two's complement of the subtrahend: 1 0 1 1 0 1 0 0 + 1 1 0 1 1 0 1 0 1 (3) Add the two's complement of the subtrahend to the minuend and drop the high-order 1, giving the difference: 1 1 1 1 1 1 1 0 1 0 1 0 1 + 1 0 1 1 0 1 0 1
  • 46. OCTAL NUMBER SYSTEM The base of the octal number system is eight, so each position of the octal number represents a successive power of eight. From right to left, the successive positions of the octal number are weighted 1, 8, 64, 512, etc. A list of the first several powers of 8 follows: 80= 1 = 8 = 64 83= 512 …84 = 4096 85 = 32768 18 18 28
  • 47. OCTAL to DECIMAL 3 6 78 7 x 80 = 7 x 1 = 7 6 x 81 = 6 x 8 = 48 3 x 82 = 3 x 64 = 192 ------ 247 10
  • 48. TRY THIS: Convert the following octal numbers to their decimal equivalents: (a) 5 3 68
  • 49. DECIMAL to OCTAL (1) Divide the decimal number by the base (in the case of octal, divide by 8). (2) Indicate the remainder to the right. (3) Continue dividing into each quotient (and indicating the remainder) until the divide operation produces a zero quotient. (4) The base 8 number is the numeric remainder reading from the last division to the first (if you start at the bottom, the answer will read from top to bottom).
  • 50. HEXADECIMAL SYSTEM The hexadecimal number system uses not only the Arabic numerals 0 through 9, but also uses the letters A, B, C, D, E, and F to represent the equivalent of 1010 through 1510, respectively.
  • 51. HEXADECIMAL to DECIMAL How to convert from hex to decimal A regular decimal number is the sum of the digits multiplied with its power of 10. Example #1 137 in base 10 is equal to each digit multiplied with its corresponding power of 10: 13710 = 1×102 +3×101 +7×100 = 100+30+7
  • 52. COMPUTER CHARACTER SET AND DATA REPRESENTATION ASCII (pronounced "as-key", stands for American Standard Code for Information Interchange) is (used on most minicomputers and PCs) 32 through 127 of the ASCII character set, which encompass (letters, numbers, and special characters). 0-31---->Control Characters(modems, printers, and keyboards work)Eg:Printers character 12 for “form feed” 128-255Box Drawing Characters Eg:Making dialog box,non-GUI..
  • 53. EBCDIC (pronounced "eb-suh-dick", stands for Extended Binary Coded Decimal Interchange Code) (used on IBM mainframes)
  • 54. FLOW CHART A flow chart is a graphical or symbolic representation of a process. Each step in the process is represented by a different symbol and contains a short description of the process step. The flow chart symbols are linked together with arrows showing the process flow direction.