Skip to main content

magnetic storage defination


A flat rotating disc covered on one or both sides with magnetisable material. The two main types are the hard disk and the floppy disk.
Data is stored on either or both surfaces of discs in concentric rings called " tracks". Each track is divided into a whole number of " sectors". Where multiple (rigid) discs are mounted on the same axle the set of tracks at t...
he same radius on all their surfaces is known as a " cylinder".
Data is read and written by a disk drive which rotates the discs and positions the read/write heads over the desired track(s). The latter radial movement is known as " seeking". There is usually one head for each surface that stores data. To reduce rotational latency it is possible, though expensive, to have multiple heads at different angles.
The head writes binary data by magnetising small areas or "zones" of the disk in one of two opposing orientations. It reads data by detecting current pulses induced in a coil as zones with different magnetic alignment pass underneath it.
In theory, bits could be read back as a time sequence of pulse (one) or no pulse (zero). However, a run of zeros would give a prolonged absence of signal, making it hard to accurately divide the signal into individual bits due to the variability of motor speed. Run Length Limited is one common solution to this clock recovery problem.
High speed disks have an access time of 28 milliseconds or less, and low-speed disks, 65 milliseconds or more. The higher speed disks also transfer their data faster than the slower speed units.
The disks are usually aluminium with a magnetic coating. The heads "float" just above the disk's surface on a current of air, sometimes at lower than atmospheric pressure in an air-tight enclosure. The head has an aerodynamic shape so the current pushes it away from the disk. A small spring pushes the head towards the disk at the same time keeping the head at a constant distance from the disk (about two microns).
Disk drives are commonly characterised by the kind of interface used to connect to the computer, e.g. ATA, IDE, SCSI

Comments

Popular posts from this blog

Steps to remove google accounts from Computer

Open Google . You will see a round shaped picture of google account picture in top right corner as marked in below picture Click on it. Click on sign out of all accounts Click on Sign In at the top right corner as shown in picture below. Click on it. You will see following screen. Select your desired account from it and sign in . Reopen your form by clicking link provided to you, It will be open now.

Steps of splitting pdf files

Goto https://www.ilovepdf.com/split_pdf Click on Select PDF File. Upload your pdf file here. Select Extract Pages from right menu. Click on Split pdf button and wait for the procedure. Now Click on Download Split PDF and you will get a zip file in which there will be separate pdf.

Introduction to Object Oriented Programming ( OOP )

Object-Oriented Programming Object Oriented programming is a programing model that is based upon data and object. Classes   Classes are the blueprint of objects. Now you will think about what actually blueprints are. Blueprints are actually a design or plan to build something. Let's take an example like the map is detail plan of house classes are detail plan in  Object-Oriented programming. let's give you an example of a class on java so that you can unferstand. public class Car {          int horsePower;     String name;     String color;      String Company; } public class Sample {     public static void main(String[] args) {         Car car;         Car mehran;             } } Class name always start with capital letters . It is a good practice to name classes .  We will later learn how this is good. So in the above class Car ...