You are on page 1of 22

TERM PAPER

ON
TITLE: COMPUTER DATA STORAGE
SUBMITTED TO:
AMITY SCHOOL OF ENGINEERING & TEHNOLOGY

GUIDED BY:
VANDINI VERMA
ASET

SUBMITTED BY:
ANKIT MATHUR
A2305309051
3IT1

ACKNOWLEDGMENT
We express our deepest gratitude to our President Dr.Ashok Chauhan, for his
invaluable guidance and blessings.
We are very grateful to our Director
General Balvinder Shukla for providing us with an environment to complete our
project successfully.
We are deeply indebted to our Head of the Department Major A.K. Jain, who
modeled us both technically and morally for achieving greater success in life.
We express our sincere thanks to Ms
Vandini Verma for his constant encouragement and support throughout our
course, especially for the useful suggestions given during the course of the
project period.
We are very grateful to our internal guide Sapna Sinha, Program Leader, for
being instrumental in the completion of our project with his complete guidance.
We also thank all the staff members of our
college and technicians for their help in making this project a successful one.
Finally, we take this opportunity to extend our deep appreciation to our family
and friends, for all that they meant to us during the crucial times of the
completion of our project.

CERTIFICATE

This is to certify that Mr Ankit Mathur, student of B.Tech. in Information


Technology has carried out the work presented in the project of the Term paper
entitle "Computer Data Storage " as a part of First year programme of Bachelor
of Technology in Information Technology from Amity School of Engineering
and Technology, Amity University, Noida, Uttar Pradesh under my supervision.

Vandini Verma
Deptt. Of Applied Sciences
ASET, Noida.

CONTENTS
1. ABSTRACT
2. INTRODUCTION
3. DEFINATION AND OBJECTIVE OF TERM PAPER
4. INTERNATIONAL WORK ON COMPUTER STORAGE DEVICES
5. METHODOLOGY
6. DISCUSSION OF CURRENT TREND IN STORAGE TECHNOLOGY
7. REFERENCES

ABSTRACT
A Computer data storage device is a device for storing information (data).
Primary storage is data in random access memory (RAM) and other "built-in"
devices. Secondary storage is data on hard disk, tapes, and other external
devices.
The following are the latest common devices which are being used nowadays.

Hard Disks- The hard disk has to provide reliable storage for huge amounts of
data, and provide fast access. Get an insight from early development through
solutions like RAID to modern solid state drives.
Blu-ray Disks- Blu-ray is the next generation optical disk technology for the new
millennium. Using revolutionary blue-violet laser technology, it provides a
medium for high definition video and now 100GB of data storage.
Portable RAM - Flash Drives, RAM Sticks and Memory Sticks- Solid state
devices provide excellent portable file media, particularly for cameras,
phones, and MP3 players. As a ready medium for file transfer between home
and office or the classroom, a handy USB stick's hard to beat.
DVD- After a shaky start, DVDs eventually raised the bar with writable, portable
disk media. These have capacity up to 4.7 GB.
CD- A leap forward in portable storage having capacity up to 800Mb is very
common nowadays.
CD-R/CD-RW- The natural next step for CDs was for them to be writable. With
dramatic implications for media applications, a new dimension was added to
PCs at home and in industry.
Floppy Disks and Other Removable Storage Media- It's a basic problem with
computing: moving data from one computer to another. This section covers
older technologies such as floppy disk drives, and some newer ideas which
perhaps have not gone into full development.

The following are the uncommon devices which were used before or will be
available for use in near future
Vacuum tube memory
A Williams tube used a cathode ray tube, and a Selectron tube used a large
vacuum tube to store information. These primary storage devices were

short-lived in the market, since Williams tube was unreliable and Selectron
tube was expensive.
Electro-acoustic memory
Delay line memory used sound waves in a substance such as mercury to
store information. Delay line memory was dynamic volatile, cycle
sequential read/write storage, and was used for primary storage.
Optical tape
It is a medium for optical storage generally consisting of a long and narrow
strip of plastic onto which patterns can be written and from which the
patterns can be read back. It shares some technologies with cinema film
stock and optical discs, but is compatible with neither. The motivation
behind developing this technology was the possibility of far greater storage
capacities than either magnetic tape or optical discs.
Phase-change memory
It uses different mechanical phases of Phase Change Material to store
information in an X-Y addressable matrix, and reads the information by
observing the varying electrical resistance of the material. Phase-change
memory would be non-volatile, random access read/write storage, and
might be used for primary, secondary and off-line storage. Most rewritable
and many write once optical disks already use phase change material to
store information.
INTRODUCTION

DEFINATION OF TERM PAPER-

Computer data storage, often called storage or memory, refers to computer


components and recording media that retain digital data used for computing for
some interval of time. Computer data storage provides one of the core functions
of the modern computer, that of information retention. It is one of the
fundamental components of all modern computers, and coupled with a central
processing unit (CPU, a processor), implements the basic computer model..

OBJECTIVE OF TERM PAPERMany different forms of storage, based on various natural phenomena, have been
invented. So far, no practical universal storage medium exists, and all forms of
storage have some drawbacks. Therefore a computer system usually contains
several kinds of storage, each with an individual purpose.
In practice, almost all computers use a variety of memory types, organized in a
storage hierarchy around the CPU, as a trade-off between performance and cost.
Generally, the lower a storage is in the hierarchy, the lesser its bandwidth and the
greater its access latency is from the CPU. This traditional division of storage to
primary, secondary, tertiary and off-line storage is also guided by cost per bit.

METHODLOGY
Hierarchy of storage -

Various forms of storage, divided according to their distance from the central
processing unit. The fundamental components of a general-purpose computer are
arithmetic and logic unit, control circuitry, storage space, and input/output
devices. Technology and capacity as in common home computers around 2005.
Primary storage Primary storage (or main memory or internal memory), often referred to simply
as memory, is the only one directly accessible to the CPU. The CPU
continuously reads instructions stored there and executes them as required. Any
data actively operated on is also stored there in uniform manner.
This led to a modern random-access memory (RAM). It is small-sized, light, but
quite expensive at the same time. (The particular types of RAM used for primary
storage are also volatile, i.e. they lose the information when not powered).
Main memory is directly or indirectly connected to the central processing unit
via a memory bus. It is actually two buses an address bus and a data bus. The
CPU firstly sends a number through an address bus, a number called memory
address that indicates the desired location of data. Then it reads or writes the data
itself using the data bus. Additionally, a memory management unit (MMU) is a
small device between CPU and RAM recalculating the actual memory address,
for example to provide an abstraction of virtual memory or other tasks.

Secondary storage Secondary storage differs from primary storage in that it is not directly accessible
by the CPU. The computer usually uses its input/output channels to access
secondary storage and transfers the desired data using intermediate area in
primary storage. Secondary storage does not lose the data when the device is

powered downit is non-volatile. Per unit, it is typically also two orders of


magnitude less expensive than primary storage. Consequently, modern computer
systems typically have two orders of magnitude more secondary storage than
primary storage and data is kept for a longer time there.
In modern computers, hard disk drives are usually used as secondary storage.
The time taken to access a given byte of information stored on a hard disk is
typically a few thousandths of a second, or milliseconds. By contrast, the time
taken to access a given byte of information stored in random access memory is
measured in billionths of a second, or nanoseconds. This illustrates the very
significant access-time difference which distinguishes solid-state memory from
rotating magnetic storage devices: hard disks are typically about a million times
slower than memory. Rotating optical storage devices, such as CD and DVD
drives, have even longer access times. With disk drives, once the disk read/write
head reaches the proper placement and the data of interest rotates under it,
subsequent data on the track are very fast to access. As a result, in order to hide
the initial seek time and rotational latency, data are transferred to and from disks
in large contiguous blocks. Some other examples of secondary storage
technologies are: flash memory (e.g. USB flash drives or keys), floppy disks,
magnetic tape, paper tape, punched cards, standalone RAM disks, and Iomega
Zip drives.
Most computer operating systems use the concept of virtual memory, allowing
utilization of more primary storage capacity than is physically available in the
system. As the primary memory fills up, the system moves the least-used chunks
(pages) to secondary storage devices (to a swap file or page file), retrieving them
later when they are needed. As more of these retrievals from slower secondary
storage are necessary, the more the overall system performance is degraded.

Tertiary storage Large tape library - Tape cartridges placed on shelves in the front, robotic arm
moving in the back. Visible height of the library is about 180 cm.

Tertiary storage or tertiary memory provides a third level of storage. Typically it


involves a robotic mechanism which will mount (insert) and dismount removable
mass storage media into a storage device according to the system's demands; this
data is often copied to secondary storage before use. It is primarily used for
archival of rarely accessed information since it is much slower than secondary
storage (e.g. 560 seconds vs. 1-10 milliseconds). This is primarily useful for
extraordinarily large data stores, accessed without human operators. Typical
examples include tape libraries and optical jukeboxes.
When a computer needs to read information from the tertiary storage, it will first
consult a catalog database to determine which tape or disc contains the
information. Next, the computer will instruct a robotic arm to fetch the medium
and place it in a drive. When the computer has finished reading the information,
the robotic arm will return the medium to its place in the library.

Off-line storage Off-line storage is computer data storage on a medium or a device that is not
under the control of a unit. The medium is recorded, usually in a secondary or
tertiary storage device, and then physically removed or disconnected. It must be

inserted or connected by a human operator before a computer can access it again.


Unlike tertiary storage, it cannot be accessed without human interaction.
Off-line storage is used to transfer information, since the detached medium can
be easily physically transported. Additionally, in case a disaster, for example a
fire, destroys the original data, a medium in a remote location will probably be
unaffected, enabling disaster recovery. Off-line storage increases general
information security, since it is physically inaccessible from a computer, and data
confidentiality or integrity cannot be affected by computer-based attack
techniques. Also, if the information stored for archival purposes is accessed
seldom or never, off-line storage is less expensive than tertiary storage. In
modern personal computers, most secondary and tertiary storage media are also
used for off-line storage. Optical discs and flash memory devices are most
popular, and to much lesser extent removable hard disk drives. In enterprise uses,
magnetic tape is predominant. Older examples are floppy disks, Zip disks, or
punched cards.

Characteristics of storage Storage technologies at all levels of the storage hierarchy can be differentiated by
evaluating certain core characteristics as well as measuring characteristics
specific to a particular implementation. These core characteristics are volatility,

mutability, accessibility, and addressability. For any particular implementation of


any storage technology, the characteristics worth measuring are capacity and
performance.

1. Volatility (a) Non-volatile memory


Will retain the stored information even if it is not constantly supplied with
electric power. It is suitable for long-term storage of information.
Nowadays used for most of secondary, tertiary, and off-line storage. In
1950s and 1960s, it was also used for primary storage, in the form of
magnetic core memory.
(b) Volatile memory
Requires constant power to maintain the stored information. The fastest
memory technologies of today are volatile ones (not a universal rule). Since
primary storage is required to be very fast, it predominantly uses volatile
memory.

2. Differentiation (a) Dynamic random access memory


A form of volatile memory which also requires the stored information to be
periodically re-read and re-written, or refreshed, otherwise it would vanish.

(b) Static memory


A form of volatile memory similar to DRAM with the exception that it
never needs to be refreshed as long as power is applied. (It loses its content
if power is removed).
3. Mutability (a) Read/write storage or mutable storage Allows information to be overwritten at any time. A computer without
some amount of read/write storage for primary storage purposes would be
useless for many tasks. Modern computers typically use read/write storage
also for secondary storage.
(b) Read only storage Retains the information stored at the time of manufacture, and write once
storage (Write Once Read Many) allows the information to be written only
once at some point after manufacture. These are called immutable storage.
Immutable storage is used for tertiary and off-line storage. Examples
include CD-ROM and CD-R.
(c) Slow write, fast read storage Read/write storage which allows information to be overwritten multiple
times, but with the write operation being much slower than the read
operation. Examples include CD-RW and flash memory.
4. Accessibility (a) Random access

Any location in storage can be accessed at any moment in approximately


the same amount of time. Such characteristic is well suited for primary and
secondary storage.
(b) Sequential access The accessing of pieces of information will be in a serial order, one after
the other; therefore the time to access a particular piece of information
depends upon which piece of information was last accessed. Such
characteristic is typical of off-line storage.
5. Capacity (a) Raw capacity The total amount of stored information that a storage device or medium can
hold. It is expressed as a quantity of bits or bytes (e.g. 10.4 megabytes).
(b) Memory storage density The compactness of stored information. It is the storage capacity of a
medium divided with a unit of length, area or volume (e.g. 1.2 megabytes
per square inch).

6. Performance (a) Latency

The time it takes to access a particular location in storage. The relevant unit
of measurement is typically nanosecond for primary storage, millisecond
for secondary storage, and second for tertiary storage. It may make sense to
separate read latency and write latency, and in case of sequential access
storage, minimum, maximum and average latency.
(b) Throughput
The rate at which information can be read from or written to the storage. In
computer data storage, throughput is usually expressed in terms of
megabytes per second or MB/s, though bit rate may also be used. As with
latency, read rate and write rate may need to be differentiated. Also
accessing media sequentially, as opposed to randomly, typically yields
maximum throughput.

7. Environmental Impact The impact of a storage device on the environment (a) Energy Storage devices that reduce fan usage, automatically shut-down during
inactivity, and low power hard drives can reduce energy consumption 90
percent.
2.5 inch hard disk drives often consume less power than larger ones. Low
capacity solid-state drives have no moving parts and consume less power
than hard disks. Also, memory may use more power than hard disks.

(b) Recycling Some devices are made of recyclable materials like aluminum, bamboo, or
plastics

Easily disassembled devices are easier to recycle if only certain parts are
recyclable
Packaging may be recyclable and some companies print instructions on the
box or use recyclable paper for the instructions instead of waxed paper

(c) Manufacturing The amount of raw materials (metals, aluminum, plastics, lead) used to
manufacture the device
Excess waste materials and if they are recycled
Chemicals used in manufacturing
Shipping distance for the device itself and parts
Amount of packaging materials and if they are recyclable

DISCUSSION OF LATEST TRENDS IN COMPUTER DATA STORAGE


TECHNOLOGY
Today's storage devices are based on magnetic or optical technology. They may
be sufficient for today's need but are fast hurtling toward obsolescence as the
power of the silicon processors increases. To meet this need for faster and more

efficient storage devices, there are many promising products on the horizon.
1. Holographic Memory For many years, many digital devices have used the medium of light to store
digital data. The most famous of these are the optical disks. These are of two
types - compact disks (CDs) and digital video disks (DVDs). Both of these
consist of a circular platter made of tough plastic on which a laser beam emitted
by the optical drive creates a pattern of microscopic pits.
Any time the operating system wants to access data, the laser reads this pattern
on the disk surface and transfers the information back to the computer. Currently,
the optical disks are the most popular and cost effective removable storage media
available in the market. However, due to the increasing speed of silicon
microprocessors and the changing demands of the customers, optical disks are
going to become an unsuitable storage media quite soon.
Now, scientists have begun to work on a new high-capacity optical storage media
based on what is called holographic memory." This uses interference of light in
light-sensitive crystals to store data. The digital information is stored within the
entire volume of the storage device, not just on the exposed surface as in the case
of optical disks.
Holographic data storage is three dimensional, instead of two dimensional, and
offers much better data density and transfer speed. It can store as much as one
terabyte of data in a device just about half the size of your thumb. Conventional
digital data storage devices write and read data one bit at a time, which is a major
drag on access speed.
Holographic technology in contrast reads and writes a million bits of data in
parallel with a single flash of light. Holographic storage devices use a laser beam
to store data. The beam is split into two by a beam splitter. The beams pass
through a semi-transparent crystal which acts like a filter to turn light into
readable bits of data.

Research into holographic memory is nothing new. It has been going on since the
1960s. However, holographic storage devices couldn't come into the market
because the technology was quite expensive and couldn't compete with magnetic
and optical storage devices that were being mass produced by the millions.
Things have begun to change now and it seems that holographic storage devices
may become commonplace in another four or five years or so.
It is estimated that a holographic disk would be the shape and size of a DVD but
have a capacity 27 times greater. This would translate to about 1 terabyte of data
per disk. In addition, the holographic storage device would have a data transfer
rate 25 times greater than today's DVDs! Clearly, holographic technology would
change the data storage industry beyond recognition.

2. Molecular Memory Molecular memory is still in the realm of research, with scientists testing various
ways to make a practical product that can be introduced in the market. In this,

individual molecules and nana-wires are used to create large arrays of memory
bits. Each molecule acts like a switch that can be either in the off or on state, thus
representing digital data.
With this technology, up to 50 times more data can be crammed into the same
storage space as today's magnetic storage devices such as hard disks. Nana
technology-based devices that may replace today's silicon storage media are still
a couple of decades away.
MRAM Chips Magneto-resistive random access memory (MRAM) chips are one of the most
important inventions in the computer industry that can change the data-storage
landscape in the near future. These chips use a radical new technology to store
data by relying on magnetic properties rather than electric charge that is used by
today's silicon chips.
In other words, they store digital information exactly like a hard drive. Unlike the
latter, the MRAM chips have the capacity to hold data even after power supply
has been switched off. They offer phenomenally fast read and write speeds and
do not become degraded with time unlike USB drives.
MRAM chips have the potential one day to replace hard drives as well as
removable storage devices based on Flash memory. They are an ideal substitute
for today's silicon chips which are quite unwieldy and big to be used in mobile
computing devices.

REFERENCES
1. 1. WIKIPEDIA.ORG
http://en.wikipedia.org/wiki/Computer_data_storage

2. COMPUTERWEEKLY.COM
http://www.computerweekly.com/Articles/2007/08/06/226027/is-holographythe-future-for-storage.htm

3. MEDIASTORAGEDEVICES.COM
http://www.mediastoragedevices.com/storage-devices-types.html

4. THEFURTUREOFTHINGS.COM
http://thefutureofthings.com/articles.php?itemId=36/59/

My Contribution in the project


I did all the relevant data collection available on the internet regarding our term
paper topic. I searched the internet website thoroughly to collect the latest trend
in Data storage devices. As our topic lays in the area of data storage devices, I
did all the necessary research required for this project. Computer Data storage

devices is a fast changing area, so I started from the beginning right from where
all this began. Typically there are 3 types of Storage which I have mentioned in
the very beginning of this file. I have prepared this project taking all three types
namely primary, secondary and tertiary. My group members helped me in my
data collection part. All the information which I collected and research which I
did in this field during my vacation, I sent that relevant information and data to
Sagar Gupta who did the editing part and made his contribution to this Project
and Shivam Agarwal who made the body and outline of this project. All the
information which I have collected is not copied from anyone and is solely my
own research and understanding in the area. All the websites from which the data
has been taken and processed is mention in the references part.

Finally I would like to say that I have put all our


efforts to make sure that every relevant information regarding our topic is there
and our project is complete in itself and self explanatory.

ANKIT MATHUR
3IT1
A2305309051
ASET NOIDA

You might also like