Skip to main content

Difference between primary memory and secondary memory.

Difference between primary memory and  secondary memory

Primary Memory

primary memory is a very important memory in our computer system.It also called non-versadile memory.  means who memory store data for  temporary time.for example :- store software application files in temporary time. if turn off the application the file will be delete in the primary memory automatically. if we  don't have primary memory  in computer system.computer can't start. 

Main two types of primary  memory

 1. Random Access Memory (RAM) 

 2. Read Only Memory (ROM) 

1. Random Access Memory (RAM) 

this memory is also called primary memory. because without these memory operating system can't start. these memory stored many types of files related to operating system. with the help of this memory operating system load the boot program. These memory can be changeable as read and write both.

2. read only memory

These memory is play a major role as a primary memory in computer system. It is called primary memory because without this memory operating system never start.These memory stored files of operating system without these memory operating system never start. 

II. Secondary memory

These memory is play a major role in computer operating system. But without this memory operating can start.Its stored operating system files inside us. In this types of memory can plug internal and external both can attach in computer system.

Types of secondary memory

Hard disk drive (H.D.D)
Pendrive
Floppy drive
Compact disk (CD) drive
SD Cards

1. Hard drive 

The first popular secondary memory is hard drive. It has stored files of operating system. To help the operating for boot program. These types of memory has taken many sequences of  plates and  move theThe plate with help of one sigle magnet inside the drive. These type of disk replaced by Solid State Drive (SSD).

2. Pendrive

These types of memory is better than floppy disk and CD drive.It has  stored many types of files with the help of electronics waves. Pendrive is now trending in market, because it stored cheap data and transfer inside the file to another device  very quickly.

3. Floppy disk

These type of memory is to play movies, videos, songs and open the document outside the  computer like CD drive. But  these of disk is now replaced  by the pendrives and SD cards.

3. SD cards

These types  of memory is made by a plastics and have gold or silver lines for the slot. When we put this memory in slot. It start the work in device. Its used in mobiles phones, tablets, Ipods, and as well as digital notebooks. These type of cards is use to if we play any video, movies , songs, documents, files in any device.

 written by yash goswami

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Comments

Popular posts from this blog

Database management syste

What is a database management system? Database management systems on z/OS A database management system (or DBMS) is essentially nothing more than a computerized data-keeping system. Users of the system are given facilities to perform several kinds of operations on such a system for either manipulation of the data in the database or the management of the database structure itself. Database Management Systems (DBMSs) are categorized according to their data structures or types. There are several types of databases that can be used on a mainframe to exploit z/OS®: inverted list, hierarchic, network, or relational. Mainframe sites tend to use a hierarchical model when the data structure (not data values) of the data needed for an application is relatively static. For example, a Bill of Material (BOM) database structure always has a high level assembly part number, and several levels of components with subcomponents. The structure usually has a component forecast, cost, and pricing data, and...
Here are some interesting facts about artificial intelligence (AI): Origins and Development: The term "artificial intelligence" was coined by John McCarthy in 1956 during the Dartmouth Conference, which is considered the birthplace of AI as a field. AI research has gone through several periods of optimism followed by "AI winters," where progress slowed and interest waned due to unmet expectations. Types of AI : Narrow AI : Designed to perform a narrow task (e.g., facial recognition, internet searches). Most of the AI systems we interact with today are narrow AI. General AI : Hypothetical AI that has the ability to understand, learn, and apply knowledge across a wide range of tasks at a human level. Superintelligent AI : An AI that surpasses human intelligence and capability. This is a theoretical concept and has not yet been achieved. Applications: AI is used in various fields, including healthcare (for diagnostics and treatment recommendations), finance (for fraud ...

Frontend Javascript Libraries for Web development

React.js   React.js (or simply React) is a popular open-source JavaScript library for building user interfaces, particularly for single-page applications where data changes dynamically over time. React was developed by Facebook and is maintained by Facebook and a community of individual developers and companies. Key Features of React Component-Based Architecture: Components : React applications are built using components, which are independent and reusable bits of code that describe a part of the user interface. Components can be class-based or function-based. Props : Short for properties, props are read-only attributes that are passed from parent to child components. State : State is a special object that holds data that may change over the lifecycle of the component. Components can update their own state and re-render when the state changes. JSX (JavaScript XML) : JSX is a syntax extension for JavaScript that looks similar to XML or HTML. It allows developers to write HTML-like c...