Question 1
What is a key-value pair data structure primarily used for?
1
Associating a unique key with a corresponding value
2
Implementing graph algorithms
3
Storing sorted data efficiently
4
Reducing memory consumption
Question 2
Which of the following data structures is NOT a key-value pair-based data structure?
1
HashMap
2
Priority Queue
3
Redis
4
TreeMap
Question 3
Which key-value pair data structure maintains keys in a sorted order?
1
HashMap
2
LinkedHashMap
3
HashTable
4
TreeMap
Question 4
What is "load factor" in a hash table?
1
The maximum number of elements allowed in a hash table
2
The percentage of non-empty slots in a hash table
3
The ratio of occupied slots to the total capacity
4
The time taken to insert an element
Question 5
In a concurrent environment, which key-value store offers built-in thread safety?
1
HashMap
2
TreeMap
3
ConcurrentHashMap
4
HashTable
Question 6
Which key-value store is commonly used in distributed caching?
1
LinkedList
2
Redis
3
HashTable
4
TreeMap
Question 7
In a HashMap, if two keys have the same hash code, how is the collision handled?
1
The key-value pair is ignored
2
The HashMap throws an exception
3
The new key-value pair replaces the old one
4
The new key-value pair is stored in the same bucket using chaining or tree structure
Question 8
What is the primary advantage of using a key-value store over a relational database?
1
Requires less storage space
2
Stronger ACID compliance
3
Fast lookup and retrieval of data
4
Better support for complex joins
Question 9
Which key-value store is often used for real-time analytics and time-series data?
1
RocksDB
2
HashTable
3
LevelDB
4
Redis
Question 10
What is the primary disadvantage of key-value stores compared to relational databases?
1
Lack of complex query capabilities
2
Poor performance for key lookups
3
Requires more memory
4
Does not support distributed systems
Question 11
Which of the following is NOT an example of a key-value database?
1
Memcached
2
PostgreSQL
3
DynamoDB
4
Cassandra
Question 12
Which of the following is the most suitable key-value database for large-scale event logging and analytics?
1
Apache Cassandra
2
HashTable
3
MongoDB
4
SQLite
