47. In the adjacency matrix representation, the time complexity of Prim's algorithm is ___. O(V log E) O(V^3) O(V^2) O(E^2) Answer The correct answer is:C) O(V^2) Explanation When using an adjacency matrix, the time complexity of Prim's algorithm is O(V^2) ...