1.
Generate the frequent itemset from the following data using the Apriori algorithm and find the strong association rules. Minimum Support = 60%, Minimum Confidence = 75%.
$\begin{array}{|c|c|}\hline \text{TID} & \text{Items} \\ \hline 1 & \{A, C, D\} \\ 2 & \{B, C, D\} \\ 3 & \{A, B, C, D\} \\ 4 & \{B, D\} \\ 5 & \{A, B, C, D\} \\ \hline \end{array}$
[10]