MC Which of the following file organization methods is not a primary file organization method? Sequential file organization incorrect Heap files incorrect Linked lists correct Hash file organization incorrect MC When translating a logical data model into an internal data model, what should be taken into account? The physical storage properties incorrect The types of operations that will be executed on the data incorrect The size of the database incorrect All of these aspects should be taken into account correct MC Which of the following file organization methods is not a primary file organization method? Heap files incorrect Hash file organization incorrect Linked lists correct Sequential file organization incorrect MC Which of the following file organization methods is not a primary file organization method? Heap files incorrect Linked lists correct Hash file organization incorrect Sequential file organization incorrect MC In which of these cases can we make use of delimiters to separate attributes? The data is stored in mixed files incorrect Some attributes have data types that can have variable lengths as input incorrect Some attributes are multivalued incorrect In all of these cases correct MC Which of the following statements with regards to random file organization is correct? In order to avoid overflow, the hashing algorithm that distributes keys to bucket addresses needs to be carefully chosen. correct A higher loading factor leads to less overflow but also more wasted storage space. incorrect Retrieving a record only requires a single block access, more particularly a random block access to the first block of the bucket indicated by the hashing algorithm. incorrect Division, a hashing techniques that divides the key by a positive integer M and takes the remainder as the record address, frequently performs very poorly. incorrect MC When can the relative location technique for record organization be problematic? When there are a lot of relations incorrect When there are many missing values in records correct When there are many different data types incorrect When there are a large number of records incorrect MC Which statement is CORRECT? B-trees are a primary file organization method and directly impact the physical location of records. incorrect Search trees are a good alternative to B-trees and B+-trees because they allow for better maintenance. incorrect The performance gain of binary search trees over linear search becomes larger as the number of key values increases. correct An unbalanced B-tree allows for additional performance gain by reducing the height of the tree. incorrect MC What does DASD stand for? Database appropriate storage device incorrect Data accumulative storage device incorrect Directly accessible storage device correct Directly accumulative storage device incorrect MC Which statement is CORRECT? An advantage of one-way linked lists, where each record contains a pointer to its logical successor, is that not all records must be retrieved any longer, because frequently only part of the list needs to be processed. incorrect An important application of tree data structures is when they provide a physical index structure to speed up retrieval of records. correct An inverted file defines an index over a unique, ordered search key of the data set. incorrect Secondary file organization methods make insertion and deletion of records a lot easier. incorrect