1. What is Region ? Junior A. a group of columns in HBase stored together and configured as a unit for compression and versioning B. an HBase problem where monotonically increasing row keys send all writes to one region, fixed by salting or hashing keys C. the unit of horizontal partitioning in HBase, a contiguous range of row keys served by one RegionServer D. a NoSQL model where rows can have many sparse columns grouped into families, as in HBase and Cassandra Reveal the answer + AI explanation — free account
2. Which term means: "the unit of horizontal partitioning in HBase, a contiguous range of row keys served by one RegionServer"? Junior A. Hotspotting B. column family C. Wide-column store D. Region Reveal the answer + AI explanation — free account
3. Which statement is correct? Junior A. Region — the HBase process that divides a region in two when it grows past a size threshold, distributing load across RegionServers B. Region — the primary, sorted identifier of a row in HBase that determines its region placement and access path C. Region — the unit of horizontal partitioning in HBase, a contiguous range of row keys served by one RegionServer D. Region — the HBase grouping of columns physically stored together in the same files, the unit at which compression and TTL are configured Reveal the answer + AI explanation — free account
4. What is Column family ? Junior A. the Cassandra model where each query chooses a consistency level such as QUORUM to trade latency against strength of consistency B. a group of columns in HBase stored together and configured as a unit for compression and versioning C. the HBase per-store probabilistic index that lets a read skip store files which cannot contain the requested row key D. the in-memory write buffer in HBase that accumulates edits before they are flushed to an HFile on disk Reveal the answer + AI explanation — free account
5. Which term means: "a group of columns in HBase stored together and configured as a unit for compression and versioning"? Junior A. Cassandra tunable consistency B. Wide-column store C. Column family D. Row key Reveal the answer + AI explanation — free account
6. Which statement is correct? Junior A. Column family — a group of columns in HBase stored together and configured as a unit for compression and versioning B. Column family — the HBase per-store probabilistic index that lets a read skip store files which cannot contain the requested row key C. Column family — the HBase process that divides a region in two when it grows past a size threshold, distributing load across RegionServers D. Column family — the unit of horizontal partitioning in HBase, a contiguous range of row keys served by one RegionServer Reveal the answer + AI explanation — free account
7. What is MemStore ? Junior A. the in-memory write buffer in HBase that accumulates edits before they are flushed to an HFile on disk B. the HBase per-store probabilistic index that lets a read skip store files which cannot contain the requested row key C. the log-structured merge-tree design where writes go to memory and sequential files, later compacted, used by HBase and Cassandra D. the HBase row-key technique of prefixing keys with a computed value to spread sequential writes across regions and avoid hotspotting Reveal the answer + AI explanation — free account
8. Which term means: "the in-memory write buffer in HBase that accumulates edits before they are flushed to an HFile on disk"? Junior A. MemStore B. Row key C. column family D. LSM tree Reveal the answer + AI explanation — free account
9. Which statement is correct? Junior A. MemStore — the in-memory write buffer in HBase that accumulates edits before they are flushed to an HFile on disk B. MemStore — the log-structured merge-tree design where writes go to memory and sequential files, later compacted, used by HBase and Cassandra C. MemStore — an HBase problem where monotonically increasing row keys send all writes to one region, fixed by salting or hashing keys D. MemStore — the HBase grouping of columns physically stored together in the same files, the unit at which compression and TTL are configured Reveal the answer + AI explanation — free account
10. What is LSM tree ? Mid A. a NoSQL model where rows can have many sparse columns grouped into families, as in HBase and Cassandra B. the log-structured merge-tree design where writes go to memory and sequential files, later compacted, used by HBase and Cassandra C. the in-memory write buffer in HBase that accumulates edits before they are flushed to an HFile on disk D. the primary, sorted identifier of a row in HBase that determines its region placement and access path Reveal the answer + AI explanation — free account
11. Which term means: "the log-structured merge-tree design where writes go to memory and sequential files, later compacted, used by HBase and Cassandra"? Mid A. column family B. MemStore C. LSM tree D. Column family Reveal the answer + AI explanation — free account
12. Which statement is correct? Mid A. LSM tree — an HBase problem where monotonically increasing row keys send all writes to one region, fixed by salting or hashing keys B. LSM tree — the Cassandra model where each query chooses a consistency level such as QUORUM to trade latency against strength of consistency C. LSM tree — the HBase per-store probabilistic index that lets a read skip store files which cannot contain the requested row key D. LSM tree — the log-structured merge-tree design where writes go to memory and sequential files, later compacted, used by HBase and Cassandra Reveal the answer + AI explanation — free account
13. What is Write-ahead log ? Mid A. the HBase process that divides a region in two when it grows past a size threshold, distributing load across RegionServers B. the durable log HBase appends edits to before applying them in memory so data survives a RegionServer crash C. the in-memory write buffer in HBase that accumulates edits before they are flushed to an HFile on disk D. an HBase problem where monotonically increasing row keys send all writes to one region, fixed by salting or hashing keys Reveal the answer + AI explanation — free account
14. Which term means: "the durable log HBase appends edits to before applying them in memory so data survives a RegionServer crash"? Mid A. Region B. Write-ahead log C. MemStore D. Wide-column store Reveal the answer + AI explanation — free account
15. Which statement is correct? Mid A. Write-ahead log — the HBase grouping of columns physically stored together in the same files, the unit at which compression and TTL are configured B. Write-ahead log — the HBase per-store probabilistic index that lets a read skip store files which cannot contain the requested row key C. Write-ahead log — the durable log HBase appends edits to before applying them in memory so data survives a RegionServer crash D. Write-ahead log — a marker written in Cassandra or HBase to record a delete, removed only after compaction past its grace period Reveal the answer + AI explanation — free account
16. What is Tombstone ? Mid A. the primary, sorted identifier of a row in HBase that determines its region placement and access path B. the HBase process that merges all store files of a region into one, applying deletes and expiring TTL versions to reclaim space C. a marker written in Cassandra or HBase to record a delete, removed only after compaction past its grace period D. the durable log HBase appends edits to before applying them in memory so data survives a RegionServer crash Reveal the answer + AI explanation — free account
17. Which term means: "a marker written in Cassandra or HBase to record a delete, removed only after compaction past its grace period"? Mid A. Row key B. Write-ahead log C. Tombstone D. salting Reveal the answer + AI explanation — free account
18. Which statement is correct? Mid A. Tombstone — a marker written in Cassandra or HBase to record a delete, removed only after compaction past its grace period B. Tombstone — the HBase process that divides a region in two when it grows past a size threshold, distributing load across RegionServers C. Tombstone — the Cassandra model where each query chooses a consistency level such as QUORUM to trade latency against strength of consistency D. Tombstone — a NoSQL model where rows can have many sparse columns grouped into families, as in HBase and Cassandra Reveal the answer + AI explanation — free account
19. What is Hotspotting ? Mid A. the log-structured merge-tree design where writes go to memory and sequential files, later compacted, used by HBase and Cassandra B. the primary, sorted identifier of a row in HBase that determines its region placement and access path C. the durable log HBase appends edits to before applying them in memory so data survives a RegionServer crash D. an HBase problem where monotonically increasing row keys send all writes to one region, fixed by salting or hashing keys Reveal the answer + AI explanation — free account
20. Which term means: "an HBase problem where monotonically increasing row keys send all writes to one region, fixed by salting or hashing keys"? Mid A. MemStore B. major compaction C. Hotspotting D. Region split Reveal the answer + AI explanation — free account
21. Which statement is correct? Mid A. Hotspotting — an HBase problem where monotonically increasing row keys send all writes to one region, fixed by salting or hashing keys B. Hotspotting — the primary, sorted identifier of a row in HBase that determines its region placement and access path C. Hotspotting — the HBase process that divides a region in two when it grows past a size threshold, distributing load across RegionServers D. Hotspotting — a group of columns in HBase stored together and configured as a unit for compression and versioning Reveal the answer + AI explanation — free account
22. What is Cassandra tunable consistency ? Senior A. the primary, sorted identifier of a row in HBase that determines its region placement and access path B. a NoSQL model where rows can have many sparse columns grouped into families, as in HBase and Cassandra C. the Cassandra model where each query chooses a consistency level such as QUORUM to trade latency against strength of consistency D. the HBase row-key technique of prefixing keys with a computed value to spread sequential writes across regions and avoid hotspotting Reveal the answer + AI explanation — free account
23. Which term means: "the Cassandra model where each query chooses a consistency level such as QUORUM to trade latency against strength of consistency"? Senior A. Wide-column store B. Hotspotting C. Cassandra tunable consistency D. Region split Reveal the answer + AI explanation — free account
24. Which statement is correct? Senior A. Cassandra tunable consistency — the log-structured merge-tree design where writes go to memory and sequential files, later compacted, used by HBase and Cassandra B. Cassandra tunable consistency — the Cassandra model where each query chooses a consistency level such as QUORUM to trade latency against strength of consistency C. Cassandra tunable consistency — the durable log HBase appends edits to before applying them in memory so data survives a RegionServer crash D. Cassandra tunable consistency — a group of columns in HBase stored together and configured as a unit for compression and versioning Reveal the answer + AI explanation — free account
25. What is Wide-column store ? Senior A. a NoSQL model where rows can have many sparse columns grouped into families, as in HBase and Cassandra B. the HBase process that divides a region in two when it grows past a size threshold, distributing load across RegionServers C. the HBase grouping of columns physically stored together in the same files, the unit at which compression and TTL are configured D. the durable log HBase appends edits to before applying them in memory so data survives a RegionServer crash Reveal the answer + AI explanation — free account
26. Which term means: "a NoSQL model where rows can have many sparse columns grouped into families, as in HBase and Cassandra"? Senior A. Hotspotting B. Wide-column store C. region split D. LSM tree Reveal the answer + AI explanation — free account
27. Which statement is correct? Senior A. Wide-column store — the durable log HBase appends edits to before applying them in memory so data survives a RegionServer crash B. Wide-column store — a NoSQL model where rows can have many sparse columns grouped into families, as in HBase and Cassandra C. Wide-column store — the HBase process that merges all store files of a region into one, applying deletes and expiring TTL versions to reclaim space D. Wide-column store — the in-memory write buffer in HBase that accumulates edits before they are flushed to an HFile on disk Reveal the answer + AI explanation — free account
28. What is Region split ? Senior A. the HBase operation that divides an oversized region into two so load can be spread across RegionServers B. the primary, sorted identifier of a row in HBase that determines its region placement and access path C. a NoSQL model where rows can have many sparse columns grouped into families, as in HBase and Cassandra D. the HBase grouping of columns physically stored together in the same files, the unit at which compression and TTL are configured Reveal the answer + AI explanation — free account
29. Which term means: "the HBase operation that divides an oversized region into two so load can be spread across RegionServers"? Senior A. Row key B. Region split C. bloom filter D. major compaction Reveal the answer + AI explanation — free account
30. Which statement is correct? Senior A. Region split — the HBase per-store probabilistic index that lets a read skip store files which cannot contain the requested row key B. Region split — the HBase row-key technique of prefixing keys with a computed value to spread sequential writes across regions and avoid hotspotting C. Region split — the durable log HBase appends edits to before applying them in memory so data survives a RegionServer crash D. Region split — the HBase operation that divides an oversized region into two so load can be spread across RegionServers Reveal the answer + AI explanation — free accountShowing 30 of 48 HBase & NoSQL questions — the full set, with answers, explanations and an AI tutor on every question, is inside.