Home > General Studies (Hindi) > Quizzes > DBMS Basics Practice Test: Indexing and Hashing
DBMS Basics Practice Test: Indexing and Hashing
Fast practice, instant feedback. Timer auto-submits when time’s up.
Avg score: 67% Most missed: “The searching technique that takes O (1) time to find a data is”
Quiz questions on index definition, bitmap and ordered indices and various hashing techniques. Indexing and hashing are two important concepts in database management systems (DBMS) that improve database efficiency. Indexing improves efficiency by reducing the number of disk accesses needed to process queries. Hashing determines the direct location of a data record on a disk without the use of an index structure.  Indexing is used for rapid random lookups and efficient access of ordered records. It uses pre-organized data structures to speed up data retrieval, especially for range queries... Show more
DBMS Basics Practice Test: Indexing and Hashing
Time left 00:00
25 Questions

1. A(n) _________ can be used to preserve the integrity of a document or a message.
2. In a B+-tree index ______ for each value, we would normally maintain a list of all records with that value for the indexed attribute.
3. What is the main limitation of Hierarchical Databases?
4. Insertion of a large number of entries at a time into an index is referred to as __________ of the index.
5. In _______________ index instead of storing all the columns for a record together, each column is stored separately with all other rows in an index.
6. How many types of indexes are there in sql server?
7. The searching technique that takes O (1) time to find a data is
8. In a __________ index, an index entry appears for only some of the search-key values.
9. A _______ on the attribute A of relation r consists of one bitmap for each value that A can take.
10. Consider a hash table of size seven, with starting index zero, and a hash function (3x + 4)mod7. Assuming the hash table is initially empty, which of the following is the contents of the table when the sequence 1, 3, 8, 10 is inserted into the table using closed hashing? Note that ‘_’ denotes an empty location in the table.
11. A _________________ index is the one which satisfies all the columns requested in the query without performing further lookup into the clustered index.
12. In a _______ clustering index, the index record contains the search-key value and a pointer to the first data record with that search-key value and the rest of the records will be in the sequential pointers.
13. The property (or set of properties) that uniquely defines each row in a table is called the:
14. Which one is true about clustered index?
15. The traditional storage of data that is organized by customer, stored in separate folders in filing cabinets is an example of what type of ‘database’ system?
16. What is the purpose of the index in sql server?
17. What is true about indexes?
18. Key value pairs is usually seen in
19. Bitmaps can be combined with regular B+-tree indices for relations where a few attribute values are extremely common, and other values also occur, but much less frequently.
20. How non clustered index point to the data?
21. To identify the deleted records we use the ______________
22. Bitmap indices are a specialized type of index designed for easy querying on ___________
23. A hash function must meet ________ criteria.
24. If an index is _________________ the metadata and statistics continue to exists
25. The goal of hashing is to produce a search that takes