← Back to Database Technology

DBT: INDEXING

Practice set based on indexing screenshots: bitmap index matching, sparse/dense index sizing, extensible hashing, B/B+ trees, and grid-file/hash-index reasoning.

Progress

0/19

Question 1

1 point(s)

Bitmap index matching (students relation)

Consider relation students(studentID, degree, courseID) with bitmap indexes on degree and courseID:

Bitmap index on degree:
ISM:    010101
CS:     101010

Bitmap index on courseID:
DBT:    101000
DBTLAB: 010010
ROC:    000100
DW:     000001

Option A

studentIDdegreecourseID
1CSDBT
2ISMDBTLAB
3CSROC
4ISMDBT
5ISMDBTLAB
6ISMDW

Option B

studentIDdegreecourseID
1CSDBT
2ISMDBTLAB
3CSDW
4ISMDBT
5ISMDBTLAB
6ISMROC

Option C

studentIDdegreecourseID
1CSDBT
2ISMDBTLAB
3CSDBT
4ISMROC
5CSDBTLAB
6ISMDW

Option D

studentIDdegreecourseID
1CSDBT
2ISMDBTLAB
3CSROC
4ISMDBT
5CSDBTLAB
6ISMDW

Which table matches these bitmap indexes?