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. The database design that consists of multiple tables that are linked together through matching data stored in each table is called
2. The property (or set of properties) that uniquely defines each row in a table is called the:
3. How non clustered index point to the data?
4. What is the best definition of a collision in a hash table?
5. How many types of indexes are there in sql server?
6. Bitmaps can be used as a compressed storage mechanism at the leaf nodes of ________ for those values that occur very frequently.
7. Does index take space in the disk?
8. In ordered indices the file containing the records is sequentially ordered, a ___________ is an index whose search key also defines the sequential order of the file.
9. In the client / server model, the database:
10. In a __________ index, an index entry appears for only some of the search-key values.
11. The goal of hashing is to produce a search that takes
12. Which of the following scenarios leads to linear running time for a random search hit in a linear-probing hash table?
13. Which one is true about clustered index?
14. While inserting the record into the index, if the search-key value does not appear in the index.
15. If an index is _________________ the metadata and statistics continue to exists
16. A(n) _________ can be used to preserve the integrity of a document or a message.
17. Incase the indices values are larger, index is created for these values of the index. This is called
18. 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.
19. The association role defines:
20. Indices whose search key specifies an order different from the sequential order of the file are called ___________ indices.
21. A hash table can store a maximum of 10 records, currently there are records in location 1, 3,4,7,8,9,10. The probability of a new record going into location 2, with hash functions resolving collisions by linear probing is
22. Breadth First Search is used in
23. If h is any hashing function and is used to hash n keys in to a table of size m, where n<=m, the expected number of collisions involving a particular key x is :
24. In _______________ index instead of storing all the columns for a record together, each column is stored separately with all other rows in an index.
25. What is true about indexes?