Other (Semi-) Permanent Forms of Storage

Classic programmed-learning exercises, refreshed for modern Java and presented in the current MrStyner.com portfolio style.

Modern Java noteThis archive has been refreshed for Java 25 LTS. Core language concepts remain useful, while outdated setup instructions and browser-era Java are labeled or replaced. Java 26 is the current feature release; Java 25 is used here as the stable teaching baseline.
go to previous page   go to home page   go to next page        

Answer:

No.

Other (Semi-) Permanent Forms of Storage

Files are the only way for an application program to store information semi-permanently. Files are used when information is stored on the hard disk, a floppy disk, and all other physical forms of storage.

The system software of a computer system uses a few other semi-permanent forms of storage, such as the ROM (read-only memory) of the computer and the boot sector of a hard disk. However from an application program's point of view the only form of semi-permanent storage is file storage.

QUESTION 3:

(Thought question: ) How is information represented in a file?

  • Analog form?
  • Binary form?
  • Various special forms depending on the type of file?