InterviewSolution
| 1. |
Differentiate between hierarchical database models and network in DBMS. |
||||||||||
|
Answer» Data are grouped into nodes in a tree-like structure in a hierarchical database model. A node can only have ONE parent node above it. As a result, the data nodes in this model have one-to-many relationships. The Document Object Model (DOM), which is often used in web browsers, is an example of this model. The NETWORK database model is a more sophisticated variation of the hierarchical database architecture. Data is organised in a graph-like structure here as well. One child node, on the other HAND, can be connected to several parent nodes. A many-to-many relationship between data nodes is an outcome of this. Network databases include IDMS (Integrated Database Management System) and IDS (Integrated Data Store).
|
|||||||||||