solution - DBMS (Database Management System) : file organization (Test 1)

Question : In heap file organization, records are stored:

Solution :
962720260430074239 Correct Answer : In no particular order

Description -

DBMS (Database Management System) : file organization (Test 1)

Question : Which issue is most commonly associated with heap file organization?

Solution :
561220260430074200 Correct Answer : Inefficient search for large datasets

Description -

DBMS (Database Management System) : file organization (Test 1)

Question : Which of the following operations is most efficient in heap file organization?

Solution :
611120260430074115 Correct Answer : Bulk insertion

Description -

DBMS (Database Management System) : file organization (Test 1)

Question : What is the worst-case time complexity for searching a record in a heap file (without indexing)?

Solution :
489120260430074036 Correct Answer : O(n)

Description -

DBMS (Database Management System) : file organization (Test 1)

Question : In heap file organization, when a data block becomes full, a new record is inserted:

Solution :
413020260430073945 Correct Answer : In any available block selected by DBMS

Description -

DBMS (Database Management System) : file organization (Test 1)

Question : Which component in hash file organization is responsible for mapping keys to storage locations?

Solution :
858020260430073415 Correct Answer : Hash function

Description -

DBMS (Database Management System) : file organization (Test 1)

Question : In static hashing, which of the following is true?

Solution :
661320260430073341 Correct Answer : Number of buckets remains fixed

Description -

DBMS (Database Management System) : file organization (Test 1)

Question : Which of the following is a major limitation of hash file organization?

Solution :
144620260430073253 Correct Answer : Cannot perform range queries efficiently

Description -

DBMS (Database Management System) : file organization (Test 1)

Question : In hash file organization, multiple keys mapping to the same bucket is called:

Solution :
606720260430073201 Correct Answer : Collision

Description -

DBMS (Database Management System) : file organization (Test 1)

Question : Which of the following best describes hash file organization?

Solution :
783020260430073122 Correct Answer : Records are stored using a hash function to determine their address

Description -

DBMS (Database Management System) : file organization (Test 1)

Question : What is a major drawback of sequential file organization when records are frequently updated?

Solution :
585120260430072917 Correct Answer : Need for frequent sorting or full traversal

Description -

DBMS (Database Management System) : file organization (Test 1)

Question : Which operation is most efficient in sequential file organization?

Solution :
859620260430072839 Correct Answer : Sequential traversal

Description -

DBMS (Database Management System) : file organization (Test 1)

Question : In a sorted sequential file, insertion of a new record typically requires:

Solution :
49520260430072804 Correct Answer : Finding correct position and possibly shifting records

Description -

DBMS (Database Management System) : file organization (Test 1)

Question : Which of the following correctly distinguishes the pile file method from the sorted file method?

Solution :
366020260430072720 Correct Answer : Pile files store records in insertion order; sorted files maintain key order

Description -

DBMS (Database Management System) : file organization (Test 1)

Question : In sequential file organization, why is searching for a specific record inefficient?

Solution :
928820260430072627 Correct Answer : Records must be accessed one by one sequentially

Description -

DBMS (Database Management System) : file organization (Test 1)

Question : Which of the following is NOT a primary objective of file organization?

Solution :
555120260430071219 Correct Answer : Increasing redundancy

Description -

DBMS (Database Management System) : file organization (Test 1)

Question : Which file organization uses a hash function to locate records directly?

Solution :
104820260430071129 Correct Answer : Hash

Description -

DBMS (Database Management System) : file organization (Test 1)

Question : Which of the following file organizations is most suitable for range queries and ordered processing?

Solution :
743020260430071028 Correct Answer : Sequential file organization

Description -

DBMS (Database Management System) : file organization (Test 1)

Question : In which file organization method are records stored without any specific order, making insertion fast but search slow?

Solution :
531920260430070928 Correct Answer : Heap

Description -

DBMS (Database Management System) : file organization (Test 1)

Question : Which of the following best describes file organization in DBMS?

Solution :
264120260430070841 Correct Answer : Physical arrangement of records in disk blocks

Description -

DBMS (Database Management System) : file organization (Test 1)