Quiz Summary
0 of 4 Questions completed
Questions:
Information
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading…
You must sign in or sign up to start the quiz.
You must first complete the following:
Results
Results
0 of 4 Questions answered correctly
Time has elapsed
You have reached 0 of 0 point(s), (0)
Earned Point(s): 0 of 0, (0)
0 Essay(s) Pending (Possible Point(s): 0)
Categories
- Not categorized 0%
- 1
- 2
- 3
- 4
- Current
- Review
- Answered
- Correct
- Incorrect
-
Question 1 of 4
1. Question
For minimal storage overhead, the best way to select rows not based on the primary key in ScyllaDB is:
CorrectIncorrect -
Question 2 of 4
2. Question
For the lowest latency, the best way to select rows not based on the primary key in ScyllaDB is:
CorrectIncorrect -
Question 3 of 4
3. Question
Assume the following table, with 100M pets in it:
CREATE TABLE pets (
pet_chip_id uuid,
gender Boolean,
PRIMARY KEY (pet_chip_id ));
Examine the following four CQL commands :
A) CREATE INDEX pets_by_gender ON pets (gender);
SELECT * from pets WHERE gender = true;
B) CREATE MATERIALIZED VIEW pets_by_gender AS SELECT * FROM pets WHERE pet_chip_id IS NOT NULL AND gender IS NOT NULL PRIMARY KEY(gender, pet_chip_id);
SELECT * from pets_by_gender WHERE gender = true;
C) SELECT * from pets WHERE gender = true;
D) SELECT * from pets WHERE gender = true ALLOW FILTERING;
Which of the above will be the most efficient?CorrectIncorrect -
Question 4 of 4
4. Question
When using Local Secondary Indexes:
CorrectIncorrect