Parallel Database Systems Questions and Answers
Practice ModeShowing 10 of 25 questions
Q1
What is a parallel database system mainly designed to improve?
Answer: Option B
Explanation: Parallel DBs improve performance by executing operations simultaneously.
Q2
Parallelism in databases helps reduce which of the following?
Answer: Option B
Explanation: Parallel execution speeds up responses.
Q3
Which type of parallelism uses multiple processors to run different parts of a query?
Answer: Option B
Explanation: Task parallelism splits tasks across processors.
Q4
What is the main goal of data partitioning?
Answer: Option B
Explanation: Partitioning spreads data to enable parallel processing.
Q5
Which architecture uses shared memory?
Answer: Option C
Explanation: Shared-memory systems share main memory among processors.
Q6
In shared-disk systems, processors share which component?
Answer: Option C
Explanation: All processors access the same disk system.
Q7
Which architecture is most scalable for parallel databases?
Answer: Option C
Explanation: Shared-nothing scales best because each node owns its resources.
Q8
What is horizontal partitioning?
Answer: Option B
Explanation: Horizontal partitioning splits data by rows.
Q9
Which operation benefits most from parallel processing?
Answer: Option A
Explanation: Sorting can be split into multiple parallel tasks.
Q10
Which system performs better when dealing with very large datasets?
Answer: Option B
Explanation: Parallel DBs handle large data efficiently.