F

Here is where the computer is not just a "stupid machine"
Scroll Up
start.. image1
 
image2
 
image3
 
image4
 
image5
 
image6
 
image7
 
image8
 
image9
 
image10
 
end.
Scroll Down

// this tells jquery to run the function below once the DOM is ready $(document).ready(function() { // choose text for the show/hide link var showText="Show the hidden text"; var hideText="Hide the text"; // create the toggle link $("#hide_this").before("

"+showText+""); // hide the content $('#hide_this').hide(); // capture clicks on the newly created link $('a#toggle_link').click(function() { // change the link text if ($('a#toggle_link').text()==showText) { $('a#toggle_link').text(hideText); } else { $('a#toggle_link').text(showText); } // toggle the display $('#hide_this').toggle('slow'); // return false so any link destination is not followed return false; }); });

How does a Zip drive store so much more data than a floppy drive?

The 1.44-megabyte floppy disk drives that use 3.5-inch diskettes have been around for about 15 years. At the time of their introduction, they seemed like a miracle -- they were smaller than the standard 5.25-inch disks, but they held more data!
Here are some of the parameters that determine how much data a floppy disk can hold:
Two important things to notice are the low number of tracks on the disk and the fixed number of sectors per track. Neither one of these techniques makes very good use of the surface of the disk. The main thing that separates a Zip disk from a floppy disk is the magnetic coating used on the disk. On a Zip disk, the coating is much higher quality (see How Tape Recorders Work for some discussion on magnetic coatings). The higher quality coating means that a Zip disk read/write head can be significantly smaller than a floppy disk's (by a factor of 10 or so). The smaller head, combined with a head positioning mechanism similar to that used in a hard disk, means that a Zip drive can pack thousands of tracks per inch on the track surface. Zip drives also use a variable number of sectors per track to make the best use of disk space. All of these things combine to create a floppy disk that holds a huge amount of data!

0 comments

Post a Comment

Followers