1. Java Concept Matching.
- System.in
- The console InputStream (stdin)
- System.out
- A PrintStream (an output stream) to the console (stdout)
- file
- a sequence of bits meant to be interpreted as logically connected data
- absolute path
- a path that begins at the root directory
- directory
- a collection of file names
- buffering
- the practice of moving large portions of memory into and out of memory at once to avoice the inefficiency of transferring the data strictly as needed
- filtering
- the process or performing some modification of data as it is transfered through a stream.
input stream
- a stream of data from a source to the program
output stream
- a stream of data from the program to a destination.
Binary file
- a sequence of bits.
Text file
- a sequence of bits interpreted as a standard text format such as ASCII or unicode.
- database
- A collection of related files including their data.
- record
- a collection of logically related fields.
- field
- a chunk of data.
- relative path
- a path that begins from the current location of the directory tree
Match each of the following terms.