Families can be shown as hierarchies, with grandparents at the top-level, parents and their brothers and sisters at the next level, and children on a lower-level. Here is a diagram of a family hierarchy, with each level of the hierarchy painted a different color.
|
Building things in hierarchies is very common in computer software. One example are the file systems provided by operating systems. File systems have a top-level, often referred to as the root of the file system.  Under the root, there are subdirectories like "My Documents" and "Program Files" and under these are more subdirectories.
Back to Table of Contents