Assignment7 2023
Assignment7 2023
Answer: A
2. Which of the following clustering technique start with the points as individual
clusters and, at each step, merge the closest pair of clusters
A. K-Means clustering
B. DBSCAN
C. Divisive clustering
D. Agglomerative clustering
Answer: D
A. Partitional clustering
B. Hierarchical clustering
C. Fuzzy clustering
D. Complete clustering
Answer: A
4. The Euclidean distance matrix between four 2-dimensional points, p1, p2, p3, and p4,
is shown below. A possible set of co-ordinate values of these points are:
p1 p2 p3 p4
p1 0 1.00 1.41 1.00
0 4 0
p2 1.00 0 1.00 1.41
0 0 4
p3 1.41 1.00 0 1.00
4 0 0
p4 1.00 1.41 1.00 0
0 4 0
Answer : B
Answer : A
C. Distance between the most centrally located pair of points in the clusters
Answer : B
7. Consider a set of five 2-dimensional points p1=(0, 0), p2=(5, 0), p3=(5, 1), p4=(0, 1),
and p5=(0, 0.5). Euclidean distance is the distance function. Single linkage clustering
is used to cluster the points into two clusters. The clusters are:
A. {p1, p2, p3} {p4, p5}
Answer : B
8. Consider a set of five 2-dimensional points p1=(0, 0), p2=(5, 0), p3=(5, 1), p4=(0, 1),
and p5=(0, 0.5). Euclidean distance is the distance function. Complete linkage cluster-
ing is used to cluster the points into two clusters. The clusters are:
A. {p1, p4, p5} {p2, p3}
Answer : A
9. Consider a set of five 2-dimensional points p1=(0, 0), p2=(5, 0), p3=(5, 1), p4=(0, 1),
and p5=(0, 0.5). Euclidean distance is the distance function. The k-means algorithm is
used to cluster the points into two clusters. The initial cluster centers are p1 and p5.
The clusters after two iterations of k-means are:
A. {p1, p4, p5} {p2, p3}
Answer: A
10. Given a set of seven 2-dimensional points p1=(0, 0), p2=(5, 0), p3=(5, 1), p4=(0, 1),
p5=(0, 0.5), p6=(0, 9), and p7=(5.5, 1). Euclidean distance is the distance function. The
DBSCAN algorithm is used to cluster the points. Epsilon = 1, and MinPts = 2 is used for
DBSCAN. The clusters and outliers obtained are:
A. Clusters: {p1, p3, p4, p5} {p2, p7}; Outlier: p6
Answer: C