Briefly describe the hierarchy of data.
What will be an ideal response?
Data is generally organized in a hierarchy that begins with the smallest piece of data used by computers (a bit) and progresses through the hierarchy to a database. A bit (a binary digit) represents a circuit that is either on or off. Bits can be organized into units called bytes. A byte is typically eight bits. Each byte represents a character, which is the basic building block of most information. Characters are put together to form a field. A field is typically a name, number, or combination of characters that describes an aspect of a business object or activity. A collection of data fields all related to one object, activity, or individual is called a record. A collection of related records is a file. At the highest level of the data hierarchy is a database, a collection of integrated and related files. Together, bits, characters, fields, records, files, and databases form the hierarchy of data.
You might also like to view...
The following loop would execute how many times? Loop 1 times times
a. 1 b. 2 c. 3 d. 4 e. None of these
The output of the Java code, assuming that all variables are properly declared, is: 2 3 4 5 6. n = 2;while (n >= 6){ System.out.print(n + " "); n++;}System.out.println();
Answer the following statement true (T) or false (F)