HBase Mock Test



This section presents you various set of Mock Tests related to HBase. You can download these sample mock tests at your local machine and solve offline at your convenience. Every mock test is supplied with a mock test key to let you verify the final score and grade yourself.

Questions and Answers

HBase Mock Test III

Q 1 - If we choose the rowkey to be a timestamp then inserting data to such a Hbase table will be

A - Faster than a numeric rowkey data

B - Slower than a numeric rowkey data

C - Same performance as rowkey data

D - Cannot be predicted.

Answer : B

Explanation

If the rowkey is made as timestamp then it will always be written to a specific region and at the end of the table, overloading just one machine holding that region. SO it will be slower than other type of rowkey.

Q 2 - Which of the following pair is an option for effectively distributing the data across multiple regions?

A - Hashing, salting

B - Hashing, threading

C - Salting, windowing

D - Threading, salting

Answer : A

Explanation

Hashing the rowkeys gives randomly distributed values and salting involves adding a random number to the rowkey. Both these options create a good distribution of keys to be used across multiple regions.

Answer : A

Explanation

In standalone mode Hbase runs only on the local file system.

Answer : C

Explanation

In pseudo-distributed mode Hbase can run on either local file system or HDFS but not both.

Answer : D

Explanation

By default HBase runs in standalone mode. For a fully distributed configuration set the hbase-cluster.distributed property to true.

Q 6 - A namespace in Hbase is analogous to which data base object in a relational system?

A - Table

B - Index

C - View

D - Database

Answer : D

Explanation

A namespace is analogous to a database in relational syetm as it holds the tables.

Answer : B

Explanation

The toe predefined namespace in Hbase are – habse and default. Habse contains internal tables and default contains the tables which are not qualified with any namespace.

Q 8 - Which of the following is declared during the schema definition creation?

A - Column families

B - Column names

C - Both

D - None

Answer : A

Explanation

The column families are declared upfront during the schema definition creation. But the column names can be declared anytime when the Table is up and running.

Answer : A

Explanation

The tuple row, column and version defines a cell. Here row indicates the rowkey.

Q 10 - While rows and columns keys are expressed as bytes, version is specified as

A - Date

B - Long integer

C - Short integer

D - Decimal

Answer : B

Explanation

the version is specified using a long integer. Typically this long contains time instances such as those returned by java.util.Date.getTime()

Answer : B

Explanation

The command keeps a maximum of 5 versions of all columns in column family f1.

Answer : B

Explanation

The command keeps a minimum of 2 versions of all columns in column family f1.

Q 13 - How many types of delete markers are used by Hbase for deleting columns?

A - 2

B - 3

C - 4

D - 1

Answer : B

Explanation

The three different types of column deletes in Hbase are

Delete − for a specific version of a column.

Delete column: for all versions of a column.

Delete family − for all columns of a particular ColumnFamily

Answer : A

Explanation

They result from Hbase is sorted by

ColumnFamily,,Column qualifier, rowkey,,timestamp

Q 15 - The schema level changes to table or column families(like region size, block size etc) are reflected

A - Immediately after the changes

B - Only after a major compaction

C - Only after a minor compaction

D - Restarting the Regionserver.

Answer : B

Explanation

Only after a major compaction and the StoreFiles get re-written the schema level changes are available.

Q 16 - When a large amount of client requests are directed to a very few nodes in a cluster, it is known as

A - Latency

B - Bottleneck

C - Hotspotting

D - Redundancy

Answer : C

Explanation

many client requests landing in only a few nodes is called Hotspotting.

Q 17 - The length of the name of the column family should be

A - As small as possible

B - Preferably one character

C - As large as possible

D - Does not matter

Answer : B

Explanation

The colun family name should be ideally one character so that metadata associated with a cell is minimum.

Answer : D

Explanation

The row key gets removed when a row is deleted and a new one is created when a row is inserted.

Answer : D

Explanation

Hbase can store any data that can be converted to bytes.

Answer : C

Explanation

Using TTL Hbase will delte all the rows that has reached the expiration time.

Q 21 - Which filter acts on column family?

A - Rowfilter

B - Column filter

C - Family filter

D - Valuefilter

Answer : C

Explanation

The Family filter in Hbase works on a a column family rather than on a column.

Q 22 - Which filer accepts the pagesize as a parameter?

A - Columnfilter

B - Valuefilter

C - Pagefilter

D - Keyfilter

Answer : C

Explanation

This filter gives the query result in different pages using Pagesize parameter.

Q 23 - Which filter accepts chance as a parameter?

A - Skipfilter

B - Randomrow filter

C - ColumnPrefix filter

D - Whilematchfilter

Answer : B

Explanation

The Random filter which returns a random row uses the chance parameter. Example- RandomRowFilter(float chance)

Q 24 - A new counter created in Hbase has the value

A - Zero

B - 1

C - Prec configured

D - Decided at counter creation time.

Answer : D

Explanation

When a counter is initialized, its value depends on what is specified during its creation. Only if no specific value is mentioned it will initialize to zero.

Q 25 - You can process an arbitrary code on a region server using

A - Hbase Triggers

B - Coprocessors

C - Random processors

D - Arbitrary processor

Answer : B

Explanation

A coprocessor enables you to run arbitrary code directly on each region server.

Answer Sheet

Question Number Answer Key
1 B
2 A
3 A
4 C
5 D
6 D
7 B
8 A
9 A
10 B
11 B
12 B
13 B
14 A
15 B
16 C
17 B
18 D
19 D
20 C
21 C
22 C
23 B
24 D
25 B
hbase_questions_answers.htm
Advertisements