Skip to main content

Explain Advantages of CD and DVD and Differences Between CD and DVD

Topic: Explain Advantages of CD and DVD and Differences Between CD and DVD

 What is CD?

CD stands for Compact Disc. Compact Disk or CD is a popular storage device. It is a portable storage device. It can store about 700 MB (Mega Bytes) of data.

Advantages of Compact Disk

  • It can store large amounts of different types of data. It can store information in the form of sound, videos, programs or software, pictures and other graphics, documents and many more formats of data.
  • We purchase games and software stored on CDs. CD can store audio/ video songs and videos, too.
  • It is very inexpensive way of storing large amounts of data permanently.
  • It is used for backing up of important data, that can be recovered in future if any data is lost from our PC's hard disk.
  • Compact Disks are easy to use and easy to carry.
  • Compact Disks are durable and reliable. CDs can store data for many years without losing a single byte.

Different Types of Compact CDs are:

CD-ROM (Compact Disk Read Only Memory)

CD-ROM comes with already stored data on it, like games or software. As the name CD-ROM says, data can not be deleted or edited on CD-ROM. We can only read or copy data from CD-ROM.

CD-R (Compact Disk Recordable)

Compact Disc Recordable is a blank disk. We can store data on it with the help of CD-Writer only once. Then it becomes CD-ROM. So, we can only read data. We cannot change or delete data.

CD-RW ( Compact Disk Rewritable)

CD-RW disk is more useful type of Compact Disk. We can write data on CD-RW many times. We can read data, write data, erase data and rewrite data on CD-RW for many times.

What is DVD?

DVD stands for Digital Video Disk or Digital Versatile Disk. The basic difference between CD and DVD is that DVD has much more data storage capacity. DVD can store data up to 17 GB (Giga Bytes).

Advantages of DVD


  • DVD can store much more larger amounts of different types of data as compared to CD. It is used to store HD movies. It can store information in the form of sound, videos, programs or software, pictures and other graphics, documents and many more formats of data.
  • We purchase high quality movies, games and software stored on DVDs.
  • It is very inexpensive way of storing large amounts of data permanently. Although it is more expensive than CD but it can store much more data.
  • It is used for backing up of important data, that can be recovered in future if any data is lost from our PC's hard disk.
  • DVDs are easy to use and easy to carry.
  • DVDs are durable and reliable. DVDs can store data for many years without losing a single byte.

Different Types of DVDs are:

DVD-ROM (Digital Video Disk Read Only Memory)

DVD-ROM comes with already stored data on it, like movies, games or software. As the name DVD-ROM says, data can not be deleted or edited on DVD-ROM. We can only read or copy data from DVD-ROM.

DVD-R (Digital Video Disk Recordable)

Digital Video Disc Recordable is a blank disk. We can store data on it with the help of DVD-Writer only once. Then it becomes DVD-ROM. So, we can only read data. We cannot change or delete data.

DVD-RW ( Digital Video Disk Rewritable)

DVD-RW disk is more useful type of DVD. We can write data on DVD-RW many times. We can read data, write data, erase data and rewrite data on DVD-RW for many times.

Here we tabulate the main differences between CD and DVD.



Sr. No
CD
DVD
1
CD stands for Compact Disk
It stands for Digital Video Disk or Digital Versatile Disk.
2
CD can store about 700 MB of data. So, data storage capacity is much smaller than that of DVD.
DVD can store up to about 17 GB data. Therefore, data storage capacity is much larger than that of CD.
3
Technology to read/write on CD uses a laser beam of larger wave length that makes larger pits (tiny holes) on CD. Each pit represents a binary 1.
Technology to read/write on DVD uses a laser beam of shorter wave length that makes smaller pits (tiny holes) on DVD. Each pit represents a binary 1. Therefore, there will be more pits on DVD surface than that of CD. So there will be more data storage capacity of DVD than that of CD.
4
CD is cheaper than DVD.
DVD is more expensive than CD.
5
CD has slower data transfer rates.
DVD has faster data transfer rates.
6
Different types of CD include: CD-ROM, CD-R and CD-RW.
Different Types of DVD are: DVD-ROM, DVD-R and DVD-RW.


You may also like:


Computer Hardware Concepts

2.1 What are Different Types of Hardware
2.2 What are Different Types of Input Devices
2.3 Explain Different Types Of Output Devices
2.4 Explain Parts of CPU and its Working
2.5 What are Dual Devices or Both Input/ Output Devices
2.6 What is RAM, Explain Different Types of RAM
2.7 What is ROM Explain Different Types of ROM
2.8 Discuss Differences Between RAM and ROM
2.9 Explain different types of storage devices
2.10 What are Pointing Input Devices
2.11 Different Types of Mouse Input Device
2.12 Types Of Scanners Input Device



Comments

Popular posts from this blog

Explain different types of storage devices

Topic: Explain different types of storage devices in Computer systems Storage Devices Storage devices are used to store data and instructions permanently. Storage devices are also called secondary storage devices / backing storage devices / external storage devices or auxiliary storage devices. Examples of storage devices include Hard Disk, CD and DVD etc. Why Secondary Storage Devices are Used? Secondary storage devices are used because: Primary memory(RAM) is volatile and temporary. When computer is switched off, all data in ram is erased. Storage devices can store large amounts of data and instructions permanently whereas Primary memory has less capacity of storing data. Types Of Storage Devices There are three main types of storage devices:  Magnetic Tape   Magnetic Disk   Optical Disk   Flash Memory storage devices 1. Magnetic Tape Magnetic tape is the oldest storage device. It is made of plastic coated with magnetic material. Data is stored on mag

Find Your Correct Age From Date of Birth

First of all click on First two digits to type Month number from keyboard like any number from 1 to 12. . Now click on next two digits and type day number of month that is date from 1 to 31. In the last step type the year of your birth in four digits like 1995.  Now click on the blue button with text "Calculate Age". Your accurate age will be displayed below the button. For example. If today is 09-16-2023 that is September 16, 2023 and you type birth date as 11-01-2000 that is November 1, 2000, your accurate age will be displayed as:Your age is 22 years, 10 months, and 15 days. Age Calculator Age Calculator Calculate Your Age Now! Enter your date of birth: Calculate Age As shown in the image below:

Convert Centimeters to Inches Python Programming | Python Program Conver...

YouTube Video Tutorial How to write a Python program to convert centimetres to inches Formula to convert centimetres to inches   Explanation of this Python Program This Python program prompts the user to enter a height in inches, converts it to centimeters, and then prints the converted value. It uses the conversion factor of 2.54 to perform the conversion and rounds the result to two decimal places before displaying it to the user. Here's an explanation of the provided Python program line by line: python inches = float ( input ( 'Enter the Height in inches to convert into centimeters:' )) This line prompts the user to enter a height in inches and assigns the entered value to the variable inches . The input() function is used to receive input from the user, and float() is used to convert the input into a floating-point number. python centimeters = inches * 2.54 This line calculates the equivalent value in centimeters by multiplying the inches variable by the conver