Practice Library
All MCQs
Browse exam-wise, subject-wise, and country-wise MCQs with explanations.
Choose an option to check your answer.
Correct Answer: A. Discarding transactions that cannot contain any later frequent itemset
Explanation:
As itemset size grows, short or nonmatching transactions cannot contribute support.
Removing them reduces later scan cost.
Choose an option to check your answer.
Correct Answer: D. A hash tree
Explanation:
Hash trees organize candidates into buckets for efficient matching.
Transactions can be mapped to relevant candidate subsets during scans.
Choose an option to check your answer.
Correct Answer: C. It avoids duplicate candidates and enables systematic joining
Explanation:
A consistent lexicographic order gives itemsets a canonical form.
This simplifies joins, subset checks, and duplicate control.
Choose an option to check your answer.
Correct Answer: B. The set of frequent k-itemsets
Explanation:
Lk consists of k-itemsets meeting minimum support.
It is used to generate candidates for the next level.
Choose an option to check your answer.
Correct Answer: A. The set of candidate k-itemsets
Explanation:
Ck contains itemsets being considered at level k.
After support filtering, qualifying sets form Lk.
Choose an option to check your answer.
Correct Answer: D. When transactions are dense and many long patterns are frequent
Explanation:
Dense data produce many possible combinations and long candidates.
Apriori must enumerate and count a large search space.
Choose an option to check your answer.
Correct Answer: C. It may generate a huge number of candidate itemsets
Explanation:
Dense datasets and low support thresholds cause candidate explosion.
Memory use and repeated counting can become prohibitive.
Choose an option to check your answer.
Correct Answer: B. Support counts are collected separately for candidates of increasing size
Explanation:
Each level typically generates new candidates and counts their occurrences.
This scan-intensive behavior can be expensive for large datasets.
Choose an option to check your answer.
Correct Answer: A. Removing a candidate if any of its required subsets is infrequent
Explanation:
A candidate with an infrequent subset cannot be frequent.
This follows directly from the Apriori property.
Choose an option to check your answer.
Correct Answer: D. Combining frequent itemsets that share the required prefix to form larger candidates
Explanation:
Compatible (k-1)-itemsets are united to create k-itemset candidates.
Prefix ordering prevents many duplicates.
Choose an option to check your answer.
Correct Answer: C. Creating possible k-itemsets from frequent (k-1)-itemsets
Explanation:
The join step combines compatible frequent itemsets.
A subsequent prune step removes candidates with infrequent subsets.
Choose an option to check your answer.
Correct Answer: B. Find frequent one-itemsets
Explanation:
Apriori begins by counting individual item frequencies.
Only frequent one-itemsets can participate in larger frequent sets.