SlideShare una empresa de Scribd logo
1 de 55
Overview
 What is a Computer?
 Evolution of Computer
 Generations of Computer
 Classification of Computer
 Block Diagram of Computer
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
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
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
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

Más contenido relacionado

La actualidad más candente

Number system
Number systemNumber system
Number systemSajib
 
Kaizen cso002 l1
Kaizen cso002 l1Kaizen cso002 l1
Kaizen cso002 l1asslang
 
Mrs. Noland's Binary System ppt
Mrs. Noland's Binary System pptMrs. Noland's Binary System ppt
Mrs. Noland's Binary System pptdsparone
 
Number System in CoMpUtEr
Number System in CoMpUtErNumber System in CoMpUtEr
Number System in CoMpUtErvishal bansal
 
Binary ,octa,hexa conversion
Binary ,octa,hexa conversionBinary ,octa,hexa conversion
Binary ,octa,hexa conversionChaudharyShoaib7
 
01 number systems-students
01 number systems-students01 number systems-students
01 number systems-studentsmeomeobsu
 
Introduction to Software Engineering: Lecture 1 introduction i
Introduction to Software Engineering: Lecture 1  introduction iIntroduction to Software Engineering: Lecture 1  introduction i
Introduction to Software Engineering: Lecture 1 introduction iAhmed Saber
 
Chapter 03 number system 2o-p
Chapter 03 number system 2o-pChapter 03 number system 2o-p
Chapter 03 number system 2o-pIIUI
 
Chapter 03 number system 3o-p
Chapter 03 number system 3o-pChapter 03 number system 3o-p
Chapter 03 number system 3o-pIIUI
 
Binary, Decimal and Hexadecimal
Binary, Decimal and HexadecimalBinary, Decimal and Hexadecimal
Binary, Decimal and HexadecimalUthraSowrirajan1
 
Chapter 03 number system
Chapter 03 number systemChapter 03 number system
Chapter 03 number systemIIUI
 

La actualidad más candente (20)

Number system
Number systemNumber system
Number system
 
Kaizen cso002 l1
Kaizen cso002 l1Kaizen cso002 l1
Kaizen cso002 l1
 
Mrs. Noland's Binary System ppt
Mrs. Noland's Binary System pptMrs. Noland's Binary System ppt
Mrs. Noland's Binary System ppt
 
Chapter#4
Chapter#4Chapter#4
Chapter#4
 
Number System in CoMpUtEr
Number System in CoMpUtErNumber System in CoMpUtEr
Number System in CoMpUtEr
 
Binary ,octa,hexa conversion
Binary ,octa,hexa conversionBinary ,octa,hexa conversion
Binary ,octa,hexa conversion
 
Quantitative Analysis 2
Quantitative Analysis 2Quantitative Analysis 2
Quantitative Analysis 2
 
Number system
Number systemNumber system
Number system
 
Lecture 2
Lecture 2Lecture 2
Lecture 2
 
Number Systems Basic Concepts
Number Systems Basic ConceptsNumber Systems Basic Concepts
Number Systems Basic Concepts
 
01 number systems-students
01 number systems-students01 number systems-students
01 number systems-students
 
Introduction to Software Engineering: Lecture 1 introduction i
Introduction to Software Engineering: Lecture 1  introduction iIntroduction to Software Engineering: Lecture 1  introduction i
Introduction to Software Engineering: Lecture 1 introduction i
 
Number System
Number SystemNumber System
Number System
 
Number System
Number SystemNumber System
Number System
 
Binary
BinaryBinary
Binary
 
Datarepresentation2
Datarepresentation2Datarepresentation2
Datarepresentation2
 
Chapter 03 number system 2o-p
Chapter 03 number system 2o-pChapter 03 number system 2o-p
Chapter 03 number system 2o-p
 
Chapter 03 number system 3o-p
Chapter 03 number system 3o-pChapter 03 number system 3o-p
Chapter 03 number system 3o-p
 
Binary, Decimal and Hexadecimal
Binary, Decimal and HexadecimalBinary, Decimal and Hexadecimal
Binary, Decimal and Hexadecimal
 
Chapter 03 number system
Chapter 03 number systemChapter 03 number system
Chapter 03 number system
 

Destacado

e marketing in brief
e marketing in briefe marketing in brief
e marketing in briefvijina
 
Basic concept of computer network
Basic concept of computer networkBasic concept of computer network
Basic concept of computer networkSaahilIT
 
Chapter 01 introduction to Computer
Chapter 01 introduction to ComputerChapter 01 introduction to Computer
Chapter 01 introduction to ComputerHareem Aslam
 
Computer Based Training[1]
Computer Based Training[1]Computer Based Training[1]
Computer Based Training[1]ahmad bassiouny
 
Computer network basic concepts
Computer network   basic conceptsComputer network   basic concepts
Computer network basic conceptsrahul kapoliya
 
Chapter1 introduction to computer systems
Chapter1 introduction to computer systemsChapter1 introduction to computer systems
Chapter1 introduction to computer systemsMuhammad Waqas
 
Computer Education Curriculum in Nursery and Primary School
Computer Education Curriculum in Nursery and Primary SchoolComputer Education Curriculum in Nursery and Primary School
Computer Education Curriculum in Nursery and Primary SchoolOnasanya2014
 
An introduction to Computer Technology
An introduction to Computer TechnologyAn introduction to Computer Technology
An introduction to Computer TechnologySteven Heath
 
Introduction to computer
Introduction  to  computerIntroduction  to  computer
Introduction to computerhina amir
 
Computer Basics 101 Slide Show Presentation
Computer Basics 101 Slide Show PresentationComputer Basics 101 Slide Show Presentation
Computer Basics 101 Slide Show Presentationsluget
 
Introduction to Computers
Introduction to ComputersIntroduction to Computers
Introduction to ComputersSamudin Kassan
 
basics of computer system ppt
basics of computer system pptbasics of computer system ppt
basics of computer system pptSuaj
 

Destacado (16)

e marketing in brief
e marketing in briefe marketing in brief
e marketing in brief
 
computer based training
computer based trainingcomputer based training
computer based training
 
Basic concept of computer network
Basic concept of computer networkBasic concept of computer network
Basic concept of computer network
 
Chapter 01 introduction to Computer
Chapter 01 introduction to ComputerChapter 01 introduction to Computer
Chapter 01 introduction to Computer
 
Computer Based Training[1]
Computer Based Training[1]Computer Based Training[1]
Computer Based Training[1]
 
Computer network basic concepts
Computer network   basic conceptsComputer network   basic concepts
Computer network basic concepts
 
Chapter1 introduction to computer systems
Chapter1 introduction to computer systemsChapter1 introduction to computer systems
Chapter1 introduction to computer systems
 
01 - Introduction to Computer
01 - Introduction to Computer01 - Introduction to Computer
01 - Introduction to Computer
 
Introduction To Computer
Introduction To ComputerIntroduction To Computer
Introduction To Computer
 
Computer Education Curriculum in Nursery and Primary School
Computer Education Curriculum in Nursery and Primary SchoolComputer Education Curriculum in Nursery and Primary School
Computer Education Curriculum in Nursery and Primary School
 
An introduction to Computer Technology
An introduction to Computer TechnologyAn introduction to Computer Technology
An introduction to Computer Technology
 
Introduction to computer
Introduction  to  computerIntroduction  to  computer
Introduction to computer
 
Basic computer class 1
Basic computer class 1Basic computer class 1
Basic computer class 1
 
Computer Basics 101 Slide Show Presentation
Computer Basics 101 Slide Show PresentationComputer Basics 101 Slide Show Presentation
Computer Basics 101 Slide Show Presentation
 
Introduction to Computers
Introduction to ComputersIntroduction to Computers
Introduction to Computers
 
basics of computer system ppt
basics of computer system pptbasics of computer system ppt
basics of computer system ppt
 

Similar a Basics of Computer For Begginers

Introduction to computers
Introduction to computersIntroduction to computers
Introduction to computersNishant Munjal
 
FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...
FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...
FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...Arti Parab Academics
 
Introduction to digital computers and Number systems.pptx
Introduction to digital computers and Number systems.pptxIntroduction to digital computers and Number systems.pptx
Introduction to digital computers and Number systems.pptxBhawaniShankarSahu1
 
Microproccesor and Microcontrollers hardware basics
Microproccesor and Microcontrollers hardware basicsMicroproccesor and Microcontrollers hardware basics
Microproccesor and Microcontrollers hardware basicsashmus
 
6_2018_11_23!09_24_56_PM (1).pptx
6_2018_11_23!09_24_56_PM (1).pptx6_2018_11_23!09_24_56_PM (1).pptx
6_2018_11_23!09_24_56_PM (1).pptxHebaEng
 
Presentation of ICT.ppt.pptx
Presentation of ICT.ppt.pptxPresentation of ICT.ppt.pptx
Presentation of ICT.ppt.pptxMinahilUmar1
 
04 chapter03 02_numbers_systems_student_version_fa16
04 chapter03 02_numbers_systems_student_version_fa1604 chapter03 02_numbers_systems_student_version_fa16
04 chapter03 02_numbers_systems_student_version_fa16John Todora
 
Chapter 2.ppt
Chapter 2.pptChapter 2.ppt
Chapter 2.pptNMohd3
 
numbersystem-211022083557.pdf
numbersystem-211022083557.pdfnumbersystem-211022083557.pdf
numbersystem-211022083557.pdfAsthaChaurasia4
 
6_2020_12_23!08_00_40_AM.pdf
6_2020_12_23!08_00_40_AM.pdf6_2020_12_23!08_00_40_AM.pdf
6_2020_12_23!08_00_40_AM.pdfHebaEng
 
Number system computer fundamental
 Number  system computer fundamental  Number  system computer fundamental
Number system computer fundamental Aman anand kumar
 

Similar a Basics of Computer For Begginers (20)

W 9 numbering system
W 9 numbering systemW 9 numbering system
W 9 numbering system
 
W 9 numbering system
W 9 numbering systemW 9 numbering system
W 9 numbering system
 
Introduction to computers
Introduction to computersIntroduction to computers
Introduction to computers
 
Chapter 1: Binary System
 Chapter 1: Binary System Chapter 1: Binary System
Chapter 1: Binary System
 
Digital Electronics Notes.pdf
Digital Electronics Notes.pdfDigital Electronics Notes.pdf
Digital Electronics Notes.pdf
 
FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...
FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...
FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...
 
Introduction to digital computers and Number systems.pptx
Introduction to digital computers and Number systems.pptxIntroduction to digital computers and Number systems.pptx
Introduction to digital computers and Number systems.pptx
 
Microproccesor and Microcontrollers hardware basics
Microproccesor and Microcontrollers hardware basicsMicroproccesor and Microcontrollers hardware basics
Microproccesor and Microcontrollers hardware basics
 
1.1.1 BINARY SYSTEM
1.1.1 BINARY SYSTEM1.1.1 BINARY SYSTEM
1.1.1 BINARY SYSTEM
 
6_2018_11_23!09_24_56_PM (1).pptx
6_2018_11_23!09_24_56_PM (1).pptx6_2018_11_23!09_24_56_PM (1).pptx
6_2018_11_23!09_24_56_PM (1).pptx
 
Presentation of ICT.ppt.pptx
Presentation of ICT.ppt.pptxPresentation of ICT.ppt.pptx
Presentation of ICT.ppt.pptx
 
04 chapter03 02_numbers_systems_student_version_fa16
04 chapter03 02_numbers_systems_student_version_fa1604 chapter03 02_numbers_systems_student_version_fa16
04 chapter03 02_numbers_systems_student_version_fa16
 
Chapter 2.ppt
Chapter 2.pptChapter 2.ppt
Chapter 2.ppt
 
NUMBER SYSTEM.pptx
NUMBER SYSTEM.pptxNUMBER SYSTEM.pptx
NUMBER SYSTEM.pptx
 
Computer Number system
Computer Number systemComputer Number system
Computer Number system
 
numbersystem-211022083557.pdf
numbersystem-211022083557.pdfnumbersystem-211022083557.pdf
numbersystem-211022083557.pdf
 
COA Unit-1.pdf
COA Unit-1.pdfCOA Unit-1.pdf
COA Unit-1.pdf
 
6_2020_12_23!08_00_40_AM.pdf
6_2020_12_23!08_00_40_AM.pdf6_2020_12_23!08_00_40_AM.pdf
6_2020_12_23!08_00_40_AM.pdf
 
Number system computer fundamental
 Number  system computer fundamental  Number  system computer fundamental
Number system computer fundamental
 
Chapter 3.pptx
Chapter 3.pptxChapter 3.pptx
Chapter 3.pptx
 

Último

(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...ranjana rawat
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations120cr0395
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSSIVASHANKAR N
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
UNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular ConduitsUNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular Conduitsrknatarajan
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Dr.Costas Sachpazis
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVRajaP95
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...Soham Mondal
 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordAsst.prof M.Gokilavani
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxupamatechverse
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Christo Ananth
 

Último (20)

(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
UNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular ConduitsUNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular Conduits
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptx
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
 

Basics of Computer For Begginers

  • 1.
  • 2. Overview  What is a Computer?  Evolution of Computer  Generations of Computer  Classification of Computer  Block Diagram of Computer
  • 3.
  • 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
  • 12.
  • 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
  • 14.
  • 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
  • 20.
  • 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.