SlideShare a Scribd company logo
1 of 21
DATA COMMUNICATION 
& 
NETWORKING
Prepared By : 
MUHAMMAD NAUMAN
Outline: 
1) System Hardware 
2) RAM 
3) ROM 
4) Cache Memory 
5) Data Travelling b/w CPU, RAM & Cache 
6) Difference b/w PC RAM & IPhone RAM 
7) Comparison Of the Tablet PC ,Personal PC & IPhone 
8) Comparison Of Core 2 duo & Dual Core
System Hardware: 
• Any mechanical or electronic device linked in a 
computer system, including the central 
processing unit and "peripheral" devices such 
as printers and external disk drives. 
• Different Types of System hardware are 
processor, RAM,ROM, & other Peripheral 
Devices, etc
Processor: 
• The processor in a personal computer or 
embedded in small devices is often called a 
microprocessor. The term processor has 
generally replaced the term central processing 
unit (CPU).
Clock Speed/Clock Rate of CPU: 
• Every computer contains an internal clock that 
regulates the rate at which instructions are 
executed and synchronizes all the various 
computer components. The CPU requires a fixed 
number of clock ticks (or clock cycles) to execute 
each instruction. 
• The faster the clock, the more instructions the 
CPU can execute per second 
• One megahertz is equal to one million cycles per 
second
The Numbers representing that 
Written On The Processors:
Contd. 
• Part Number: The part Number explaining the 
feature containing the CPU. E.g. CPU’s frequency , 
bus speed, package, socket etc. 
• Specification Number: In specification number it 
will describe the General Information , 
Architecture/ Micro architecture of the processor. 
• FPO Number: FPO Describe that from which part 
of family is CPU belong, and it interrelate with 
part number & spec. numbers.
RAM (Random Access Memory): 
• Type of computer memory that can 
be accessed randomly 
• Any byte of memory can be accessed without 
touching the preceding bytes. 
Types: 
• DRAM (Dynamic Random Access Memory) 
• SRAM (Static Random Access Memory).
Types of DDR SDRAM 
• DDR SDRAM:DDR SDRAM stands for double data rate synchronous dynamic 
random access memory. DDR RAM transfers data twice per clock cycle, hence the 
name double data rate. DDR clock speeds range between 200 MHz (DDR-200) and 
400 MHz (DDR-400). DDR-200 transfers 1600 MB/s, while DDR-400 transfers 3200 
MB/s. 
• DDR2 SDRAM:DDR2 SDRAM stands for double data rate 2 synchronous dynamic 
random access memory.DDR2 is twice as fast as DDR which means twice as much 
data is carried to the module for each clock cycle. Also due to the design 
improvements DDR2 consumes less power as compared to the DDR memory. 
DDR2 speeds range between 400 MHz (DDR2-400) and 800 MHz (DDR2-800). 
DDR2-400 transfers 3200 MB/s. DDR2-800 transfers 6400 MB/s. 
• DDR3 SDRAM: DDR3 SDRAM stands for, double data rate 3 synchronous dynamic 
random access memory. In theory DDR3 is supposed to act twice as fast as DDR2 
memories. Thus DDR3 speeds range between 800 MHz (DDR3-800) and 1600 MHz 
(DDR3-1600). DDR3-800 transfers 6400 MB/s; DDR3-1600 transfers 12800 MB/s
ROM (Read Only Memory) 
• Computer memory on which data has been 
prerecorded. 
• Once data has been written onto a ROM chip, 
it cannot be removed and can only be read. 
• ROM is referred to as being nonvolatile, 
whereas RAM is volatile.
Where ROM Exist Physically On the 
Computer: 
The ROM is pointed with Red Square box on the board.
Types Of ROM: 
1) PROM: Short for programmable read-only 
memory, a memory chip on which data can be written 
only once. 
• Once a program has been written onto a PROM, it remains 
there forever. 
2) EPROM: Erasable programmable read-only memory . 
• EPROM is a special type of memory that retains its 
contents until it is exposed to ultraviolet light. 
3) EEPROM: Electrically erasable programmable read-only 
memory. 
• Erased by exposing it to an electrical charge 
• EEPROM is not as fast as RAM.
Size of ROM 
• This ROM included ONLY the OS, and it is 
already built in memory. 
• We was able to flash a 20 MB Ext. ROM 
• Even larger ROM is possible but doesn't make 
any sense to us
Cache Memory & Its Types: 
• Cache memory is a high speed memory kept in between processor 
and RAM to increase the data execution speed. It is kept near to the 
processor. 
There are different levels of cache. 
• L1-cache is the fastest cache and it usually comes within the processor 
chip itself. 
• The L1 cache typically ranges in size from 8KB to 64KB and uses the 
high-speed SRAM (static RAM) instead of the slower and cheaper 
DRAM (dynamic RAM) used for main memory. 
• The Intel Celeron processor uses two separate 16KB L1 caches, one for 
the instructions and one for the data. 
• L2 cache comes between L1 and RAM (processor-L1-L2-RAM) and is 
bigger than the primary cache (typically 64KB to 4MB). 
• L3 cache is not found nowadays as its function is replaced by L2 cache. 
L3 caches are found on the motherboard rather than the processor. It 
is kept between RAM and L2 cache
Technical factors why Cache is 
divided into categorizes 
• Because if the desired data was not found on the internal cache 
then it would have to be searched in the main memory (very slow), 
then why not insert another level of cache in the middle of the 
inside cache and the main memory. After the 2 levels of cache 
started being implemented another idea appear that was to split 
the inside cache into two caches one for data and another for 
instructions. However this has some problems. It is necessary to 
design and implement two caches, and for a unified cache the hit 
rate is higher because it automatically balances the load between 
instruction and data fetches. Even so the evolution is tending to use 
split caches. The benefits of cache hierarchy come at a price. Caches 
higher in the hierarchy must field the misses of their descendents. If 
the equilibrium hit rate of a leaf cache is 50%, this means that half 
of all leaf references get resolved
Contd… 
• through a second level cache rather than directly from the object's source. 
• If the reference hits the higher level cache, so much the better, as long as the 
second and third level caches do not become a performance bottleneck. 
• If the higher level caches become overloaded, then they could actually 
increase access latency, rather than reduce it. 
• The evolution of several cache layers started to be a reality, it is good for 
performance. 
• Despite the cache speed difference between L1 and system memory still 
meant every time the CPU needed to access system memory, it had to request 
the data, and then wait for it. 
• A small L1 cache was nice, but it wasn't enough. A level-2 (L2) cache is usually 
fast (25ns or faster) RAM. 
• Cache size can range from 8KB to 1 MB. There is no hard and fast rule about 
cache size, but the general rule is the faster the CPU relative to system 
memory, the larger your L2 cache should be. And then why not have a third 
level of cache (L3) with a bigger size then L2.
How Data Travelled b/w the CPU, 
Cache Memory & RAM 
• When a command is given to CPU by user then CPU send the 
command to Cache memory to check that the given 
command is frequently used or not as cache stored the most 
frequent and recent data. If the CPU get the data from the 
cache it comes back and execute the information to the user. 
• And when a user send command to CPU for a process , same 
CPU send command to Cache memory to check that the 
given command is frequently used or not, CPU explore 
completely the Cache memory for the data , if the CPU did 
not get the data from the Cache then It goes to RAM for the 
data , when CPU get the data from the RAM , 1st it came to 
cache and replaced that file/data with the old one data, that 
is not used for some time, Then CPU execute the information 
to the user.
Comparison of Tablet PC, Personal PC 
& Iphone 
1- Due to size 
2- Due to architecture 
3- Due to Electricity consumption 
4- Due to life time
Comparison of Core 2 duo & Dual 
Core: 
• Intel Dual Core is the first dual-core CPU from Intel. The 
Dual core makes use of two cores on a single die i.e it 
has two chips in one package. It solves the problem of 
overheating of Intel Pentium D without compromising 
on the performance. 
• Intel Core 2 Duo processors are the next gen 
processors from Intel. It is developed with a new 
Architecture called Core. The new architecture of Intel 
core2 duo makes it a lot better processor that runs 
cool. Most importantly the Intel core2 duo is a super 
over clocker.
Questions

More Related Content

What's hot

Memory organisation
Memory organisationMemory organisation
Memory organisation
ankush_kumar
 

What's hot (19)

Memory system
Memory systemMemory system
Memory system
 
Memory Organization
Memory OrganizationMemory Organization
Memory Organization
 
Memory hierarchy
Memory hierarchyMemory hierarchy
Memory hierarchy
 
Cache memory
Cache memoryCache memory
Cache memory
 
Memory hierarchy of digital computer system
Memory hierarchy of digital computer systemMemory hierarchy of digital computer system
Memory hierarchy of digital computer system
 
05 internal memory
05 internal memory05 internal memory
05 internal memory
 
Random Access Memory ppt
Random Access Memory pptRandom Access Memory ppt
Random Access Memory ppt
 
Memory organization
Memory organizationMemory organization
Memory organization
 
Memory organization
Memory organizationMemory organization
Memory organization
 
Memory Organization | Computer Fundamental and Organization
Memory Organization | Computer Fundamental and OrganizationMemory Organization | Computer Fundamental and Organization
Memory Organization | Computer Fundamental and Organization
 
Memory hierarchy
Memory hierarchyMemory hierarchy
Memory hierarchy
 
Memory organisation
Memory organisationMemory organisation
Memory organisation
 
Memory organization
Memory organizationMemory organization
Memory organization
 
Computer organization memory
Computer organization memoryComputer organization memory
Computer organization memory
 
How a cpu works1
How a cpu works1How a cpu works1
How a cpu works1
 
Memory Hierarchy
Memory HierarchyMemory Hierarchy
Memory Hierarchy
 
Memory System
Memory SystemMemory System
Memory System
 
Semiconductor memories
Semiconductor memoriesSemiconductor memories
Semiconductor memories
 
internal_memory
internal_memoryinternal_memory
internal_memory
 

Similar to Exploring Of System Hardware

Understanding And Managing Memory
Understanding And Managing MemoryUnderstanding And Managing Memory
Understanding And Managing Memory
isma ishak
 
Presentacion pujol
Presentacion pujolPresentacion pujol
Presentacion pujol
Dylan Real G
 

Similar to Exploring Of System Hardware (20)

cache memory and cloud computing technology
cache memory and cloud computing technologycache memory and cloud computing technology
cache memory and cloud computing technology
 
its about computer storage and its managements how to manage the memory, in a...
its about computer storage and its managements how to manage the memory, in a...its about computer storage and its managements how to manage the memory, in a...
its about computer storage and its managements how to manage the memory, in a...
 
3 computer memory
3   computer memory3   computer memory
3 computer memory
 
Understanding And Managing Memory
Understanding And Managing MemoryUnderstanding And Managing Memory
Understanding And Managing Memory
 
primary memory
primary memoryprimary memory
primary memory
 
Memory hierarchy.pdf
Memory hierarchy.pdfMemory hierarchy.pdf
Memory hierarchy.pdf
 
computer architecture and organisation
computer architecture and organisationcomputer architecture and organisation
computer architecture and organisation
 
Ram ppt
Ram pptRam ppt
Ram ppt
 
06. system unit computer
06. system unit   computer06. system unit   computer
06. system unit computer
 
Computer organisation ppt
Computer organisation pptComputer organisation ppt
Computer organisation ppt
 
Computer Memory
Computer MemoryComputer Memory
Computer Memory
 
06. System unit of computer
06. System unit of computer06. System unit of computer
06. System unit of computer
 
Computer memory and types of memory.pptx
Computer memory and types of memory.pptxComputer memory and types of memory.pptx
Computer memory and types of memory.pptx
 
unit4 and unit5.pptx
unit4 and unit5.pptxunit4 and unit5.pptx
unit4 and unit5.pptx
 
Memory Unit
Memory UnitMemory Unit
Memory Unit
 
Memory and storage devices
Memory and storage devicesMemory and storage devices
Memory and storage devices
 
Computers for Scenarios
Computers for ScenariosComputers for Scenarios
Computers for Scenarios
 
Group 3
Group 3Group 3
Group 3
 
Presentacion pujol
Presentacion pujolPresentacion pujol
Presentacion pujol
 
TYPES OF COMPUTER MEMORIES
TYPES OF COMPUTER MEMORIESTYPES OF COMPUTER MEMORIES
TYPES OF COMPUTER MEMORIES
 

Recently uploaded

怎样办理维多利亚大学毕业证(UVic毕业证书)成绩单留信认证
怎样办理维多利亚大学毕业证(UVic毕业证书)成绩单留信认证怎样办理维多利亚大学毕业证(UVic毕业证书)成绩单留信认证
怎样办理维多利亚大学毕业证(UVic毕业证书)成绩单留信认证
tufbav
 
Call Now ≽ 9953056974 ≼🔝 Call Girls In Yusuf Sarai ≼🔝 Delhi door step delevry≼🔝
Call Now ≽ 9953056974 ≼🔝 Call Girls In Yusuf Sarai ≼🔝 Delhi door step delevry≼🔝Call Now ≽ 9953056974 ≼🔝 Call Girls In Yusuf Sarai ≼🔝 Delhi door step delevry≼🔝
Call Now ≽ 9953056974 ≼🔝 Call Girls In Yusuf Sarai ≼🔝 Delhi door step delevry≼🔝
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Abortion pills in Jeddah |+966572737505 | Get Cytotec
Abortion pills in Jeddah |+966572737505 | Get CytotecAbortion pills in Jeddah |+966572737505 | Get Cytotec
Abortion pills in Jeddah |+966572737505 | Get Cytotec
Abortion pills in Riyadh +966572737505 get cytotec
 
Vip Mumbai Call Girls Kalyan Call On 9920725232 With Body to body massage wit...
Vip Mumbai Call Girls Kalyan Call On 9920725232 With Body to body massage wit...Vip Mumbai Call Girls Kalyan Call On 9920725232 With Body to body massage wit...
Vip Mumbai Call Girls Kalyan Call On 9920725232 With Body to body massage wit...
amitlee9823
 
Call Girls Chickpet ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Call Girls Chickpet ☎ 7737669865☎ Book Your One night Stand (Bangalore)Call Girls Chickpet ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Call Girls Chickpet ☎ 7737669865☎ Book Your One night Stand (Bangalore)
amitlee9823
 
Just Call Vip call girls daman Escorts ☎️9352988975 Two shot with one girl (d...
Just Call Vip call girls daman Escorts ☎️9352988975 Two shot with one girl (d...Just Call Vip call girls daman Escorts ☎️9352988975 Two shot with one girl (d...
Just Call Vip call girls daman Escorts ☎️9352988975 Two shot with one girl (d...
gajnagarg
 
怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证
怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证
怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证
ehyxf
 
Kothanur Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
Kothanur Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...Kothanur Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
Kothanur Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
amitlee9823
 
一比一原版(Otago毕业证书)奥塔哥理工学院毕业证成绩单学位证靠谱定制
一比一原版(Otago毕业证书)奥塔哥理工学院毕业证成绩单学位证靠谱定制一比一原版(Otago毕业证书)奥塔哥理工学院毕业证成绩单学位证靠谱定制
一比一原版(Otago毕业证书)奥塔哥理工学院毕业证成绩单学位证靠谱定制
uodye
 
CHEAP Call Girls in Mayapuri (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Mayapuri  (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Mayapuri  (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Mayapuri (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
CHEAP Call Girls in Vinay Nagar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Vinay Nagar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Vinay Nagar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Vinay Nagar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)
amitlee9823
 
Call Girls In RT Nagar ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In RT Nagar ☎ 7737669865 🥵 Book Your One night StandCall Girls In RT Nagar ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In RT Nagar ☎ 7737669865 🥵 Book Your One night Stand
amitlee9823
 

Recently uploaded (20)

(INDIRA) Call Girl Napur Call Now 8617697112 Napur Escorts 24x7
(INDIRA) Call Girl Napur Call Now 8617697112 Napur Escorts 24x7(INDIRA) Call Girl Napur Call Now 8617697112 Napur Escorts 24x7
(INDIRA) Call Girl Napur Call Now 8617697112 Napur Escorts 24x7
 
怎样办理维多利亚大学毕业证(UVic毕业证书)成绩单留信认证
怎样办理维多利亚大学毕业证(UVic毕业证书)成绩单留信认证怎样办理维多利亚大学毕业证(UVic毕业证书)成绩单留信认证
怎样办理维多利亚大学毕业证(UVic毕业证书)成绩单留信认证
 
Call Now ≽ 9953056974 ≼🔝 Call Girls In Yusuf Sarai ≼🔝 Delhi door step delevry≼🔝
Call Now ≽ 9953056974 ≼🔝 Call Girls In Yusuf Sarai ≼🔝 Delhi door step delevry≼🔝Call Now ≽ 9953056974 ≼🔝 Call Girls In Yusuf Sarai ≼🔝 Delhi door step delevry≼🔝
Call Now ≽ 9953056974 ≼🔝 Call Girls In Yusuf Sarai ≼🔝 Delhi door step delevry≼🔝
 
Abortion pills in Jeddah |+966572737505 | Get Cytotec
Abortion pills in Jeddah |+966572737505 | Get CytotecAbortion pills in Jeddah |+966572737505 | Get Cytotec
Abortion pills in Jeddah |+966572737505 | Get Cytotec
 
Top Rated Pune Call Girls Chakan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated  Pune Call Girls Chakan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Top Rated  Pune Call Girls Chakan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated Pune Call Girls Chakan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
 
Vip Mumbai Call Girls Kalyan Call On 9920725232 With Body to body massage wit...
Vip Mumbai Call Girls Kalyan Call On 9920725232 With Body to body massage wit...Vip Mumbai Call Girls Kalyan Call On 9920725232 With Body to body massage wit...
Vip Mumbai Call Girls Kalyan Call On 9920725232 With Body to body massage wit...
 
Call Girls Chickpet ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Call Girls Chickpet ☎ 7737669865☎ Book Your One night Stand (Bangalore)Call Girls Chickpet ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Call Girls Chickpet ☎ 7737669865☎ Book Your One night Stand (Bangalore)
 
(ISHITA) Call Girls Service Aurangabad Call Now 8617697112 Aurangabad Escorts...
(ISHITA) Call Girls Service Aurangabad Call Now 8617697112 Aurangabad Escorts...(ISHITA) Call Girls Service Aurangabad Call Now 8617697112 Aurangabad Escorts...
(ISHITA) Call Girls Service Aurangabad Call Now 8617697112 Aurangabad Escorts...
 
Call Girls Pimple Saudagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Pimple Saudagar Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Pimple Saudagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Pimple Saudagar Call Me 7737669865 Budget Friendly No Advance Booking
 
Just Call Vip call girls daman Escorts ☎️9352988975 Two shot with one girl (d...
Just Call Vip call girls daman Escorts ☎️9352988975 Two shot with one girl (d...Just Call Vip call girls daman Escorts ☎️9352988975 Two shot with one girl (d...
Just Call Vip call girls daman Escorts ☎️9352988975 Two shot with one girl (d...
 
怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证
怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证
怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证
 
Kothanur Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
Kothanur Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...Kothanur Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
Kothanur Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
 
一比一原版(Otago毕业证书)奥塔哥理工学院毕业证成绩单学位证靠谱定制
一比一原版(Otago毕业证书)奥塔哥理工学院毕业证成绩单学位证靠谱定制一比一原版(Otago毕业证书)奥塔哥理工学院毕业证成绩单学位证靠谱定制
一比一原版(Otago毕业证书)奥塔哥理工学院毕业证成绩单学位证靠谱定制
 
CHEAP Call Girls in Mayapuri (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Mayapuri  (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Mayapuri  (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Mayapuri (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
CHEAP Call Girls in Vinay Nagar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Vinay Nagar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Vinay Nagar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Vinay Nagar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
VVIP Pune Call Girls Gahunje WhatSapp Number 8005736733 With Elite Staff And ...
VVIP Pune Call Girls Gahunje WhatSapp Number 8005736733 With Elite Staff And ...VVIP Pune Call Girls Gahunje WhatSapp Number 8005736733 With Elite Staff And ...
VVIP Pune Call Girls Gahunje WhatSapp Number 8005736733 With Elite Staff And ...
 
Top Rated Pune Call Girls Ravet ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Ravet ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Ravet ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Ravet ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
 
Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)
 
Call Girls In RT Nagar ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In RT Nagar ☎ 7737669865 🥵 Book Your One night StandCall Girls In RT Nagar ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In RT Nagar ☎ 7737669865 🥵 Book Your One night Stand
 
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Th...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Th...Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Th...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Th...
 

Exploring Of System Hardware

  • 1. DATA COMMUNICATION & NETWORKING
  • 2. Prepared By : MUHAMMAD NAUMAN
  • 3. Outline: 1) System Hardware 2) RAM 3) ROM 4) Cache Memory 5) Data Travelling b/w CPU, RAM & Cache 6) Difference b/w PC RAM & IPhone RAM 7) Comparison Of the Tablet PC ,Personal PC & IPhone 8) Comparison Of Core 2 duo & Dual Core
  • 4. System Hardware: • Any mechanical or electronic device linked in a computer system, including the central processing unit and "peripheral" devices such as printers and external disk drives. • Different Types of System hardware are processor, RAM,ROM, & other Peripheral Devices, etc
  • 5. Processor: • The processor in a personal computer or embedded in small devices is often called a microprocessor. The term processor has generally replaced the term central processing unit (CPU).
  • 6. Clock Speed/Clock Rate of CPU: • Every computer contains an internal clock that regulates the rate at which instructions are executed and synchronizes all the various computer components. The CPU requires a fixed number of clock ticks (or clock cycles) to execute each instruction. • The faster the clock, the more instructions the CPU can execute per second • One megahertz is equal to one million cycles per second
  • 7. The Numbers representing that Written On The Processors:
  • 8. Contd. • Part Number: The part Number explaining the feature containing the CPU. E.g. CPU’s frequency , bus speed, package, socket etc. • Specification Number: In specification number it will describe the General Information , Architecture/ Micro architecture of the processor. • FPO Number: FPO Describe that from which part of family is CPU belong, and it interrelate with part number & spec. numbers.
  • 9. RAM (Random Access Memory): • Type of computer memory that can be accessed randomly • Any byte of memory can be accessed without touching the preceding bytes. Types: • DRAM (Dynamic Random Access Memory) • SRAM (Static Random Access Memory).
  • 10. Types of DDR SDRAM • DDR SDRAM:DDR SDRAM stands for double data rate synchronous dynamic random access memory. DDR RAM transfers data twice per clock cycle, hence the name double data rate. DDR clock speeds range between 200 MHz (DDR-200) and 400 MHz (DDR-400). DDR-200 transfers 1600 MB/s, while DDR-400 transfers 3200 MB/s. • DDR2 SDRAM:DDR2 SDRAM stands for double data rate 2 synchronous dynamic random access memory.DDR2 is twice as fast as DDR which means twice as much data is carried to the module for each clock cycle. Also due to the design improvements DDR2 consumes less power as compared to the DDR memory. DDR2 speeds range between 400 MHz (DDR2-400) and 800 MHz (DDR2-800). DDR2-400 transfers 3200 MB/s. DDR2-800 transfers 6400 MB/s. • DDR3 SDRAM: DDR3 SDRAM stands for, double data rate 3 synchronous dynamic random access memory. In theory DDR3 is supposed to act twice as fast as DDR2 memories. Thus DDR3 speeds range between 800 MHz (DDR3-800) and 1600 MHz (DDR3-1600). DDR3-800 transfers 6400 MB/s; DDR3-1600 transfers 12800 MB/s
  • 11. ROM (Read Only Memory) • Computer memory on which data has been prerecorded. • Once data has been written onto a ROM chip, it cannot be removed and can only be read. • ROM is referred to as being nonvolatile, whereas RAM is volatile.
  • 12. Where ROM Exist Physically On the Computer: The ROM is pointed with Red Square box on the board.
  • 13. Types Of ROM: 1) PROM: Short for programmable read-only memory, a memory chip on which data can be written only once. • Once a program has been written onto a PROM, it remains there forever. 2) EPROM: Erasable programmable read-only memory . • EPROM is a special type of memory that retains its contents until it is exposed to ultraviolet light. 3) EEPROM: Electrically erasable programmable read-only memory. • Erased by exposing it to an electrical charge • EEPROM is not as fast as RAM.
  • 14. Size of ROM • This ROM included ONLY the OS, and it is already built in memory. • We was able to flash a 20 MB Ext. ROM • Even larger ROM is possible but doesn't make any sense to us
  • 15. Cache Memory & Its Types: • Cache memory is a high speed memory kept in between processor and RAM to increase the data execution speed. It is kept near to the processor. There are different levels of cache. • L1-cache is the fastest cache and it usually comes within the processor chip itself. • The L1 cache typically ranges in size from 8KB to 64KB and uses the high-speed SRAM (static RAM) instead of the slower and cheaper DRAM (dynamic RAM) used for main memory. • The Intel Celeron processor uses two separate 16KB L1 caches, one for the instructions and one for the data. • L2 cache comes between L1 and RAM (processor-L1-L2-RAM) and is bigger than the primary cache (typically 64KB to 4MB). • L3 cache is not found nowadays as its function is replaced by L2 cache. L3 caches are found on the motherboard rather than the processor. It is kept between RAM and L2 cache
  • 16. Technical factors why Cache is divided into categorizes • Because if the desired data was not found on the internal cache then it would have to be searched in the main memory (very slow), then why not insert another level of cache in the middle of the inside cache and the main memory. After the 2 levels of cache started being implemented another idea appear that was to split the inside cache into two caches one for data and another for instructions. However this has some problems. It is necessary to design and implement two caches, and for a unified cache the hit rate is higher because it automatically balances the load between instruction and data fetches. Even so the evolution is tending to use split caches. The benefits of cache hierarchy come at a price. Caches higher in the hierarchy must field the misses of their descendents. If the equilibrium hit rate of a leaf cache is 50%, this means that half of all leaf references get resolved
  • 17. Contd… • through a second level cache rather than directly from the object's source. • If the reference hits the higher level cache, so much the better, as long as the second and third level caches do not become a performance bottleneck. • If the higher level caches become overloaded, then they could actually increase access latency, rather than reduce it. • The evolution of several cache layers started to be a reality, it is good for performance. • Despite the cache speed difference between L1 and system memory still meant every time the CPU needed to access system memory, it had to request the data, and then wait for it. • A small L1 cache was nice, but it wasn't enough. A level-2 (L2) cache is usually fast (25ns or faster) RAM. • Cache size can range from 8KB to 1 MB. There is no hard and fast rule about cache size, but the general rule is the faster the CPU relative to system memory, the larger your L2 cache should be. And then why not have a third level of cache (L3) with a bigger size then L2.
  • 18. How Data Travelled b/w the CPU, Cache Memory & RAM • When a command is given to CPU by user then CPU send the command to Cache memory to check that the given command is frequently used or not as cache stored the most frequent and recent data. If the CPU get the data from the cache it comes back and execute the information to the user. • And when a user send command to CPU for a process , same CPU send command to Cache memory to check that the given command is frequently used or not, CPU explore completely the Cache memory for the data , if the CPU did not get the data from the Cache then It goes to RAM for the data , when CPU get the data from the RAM , 1st it came to cache and replaced that file/data with the old one data, that is not used for some time, Then CPU execute the information to the user.
  • 19. Comparison of Tablet PC, Personal PC & Iphone 1- Due to size 2- Due to architecture 3- Due to Electricity consumption 4- Due to life time
  • 20. Comparison of Core 2 duo & Dual Core: • Intel Dual Core is the first dual-core CPU from Intel. The Dual core makes use of two cores on a single die i.e it has two chips in one package. It solves the problem of overheating of Intel Pentium D without compromising on the performance. • Intel Core 2 Duo processors are the next gen processors from Intel. It is developed with a new Architecture called Core. The new architecture of Intel core2 duo makes it a lot better processor that runs cool. Most importantly the Intel core2 duo is a super over clocker.