c)
Let’s AE is our first edge with weight 1. Then again we have to search the next minimum edge in the tree that is EF which is also with weight 1 after that we can search the weight which is now equal or greater than 1 which is EB and FB, both have edge weight is 2 then we can choose any of them so let’s take FB. As no cycle is formed so include it in our minimum spanning tree. We next consider the smallest weighted edge from remaining edges FG having weight 3. As no cycle is formed, include it in our minimum spanning tree.
We next consider the smallest weighted edge from remaining edges GH having weight 3. As no cycle is formed, include it in our minimum spanning tree. We next consider the smallest weighted edge from remaining edges GC having weight 4. As no cycle is formed, include it in our minimum spanning tree.
Finally consider the smallest weighted edge from remaining edges GD having weight 5. As no cycle is formed, include it in our minimum spanning tree.
minimum spanning tree is now connected containing V-1 edges.

By adding all the weights of the edges we can get the cost of its minimum spanning tree.To find the number of minimum spanning tree by using Kruskal algorithm is in which starts with the node which have minimum weight on its edge and no cycle is formed, include it in our minimum spanning tree. then again search the next minimum weight of its edge by applying these steps simultaneously we get the connected graph which is know as minimum spanning tree.
consider the smallest weighted edge so there we have two options that is AE or EF we can choose any of them edge.So, lets AE is our first edge with weight 1. Then again we have to search the next minimum edge in the tree that is EF which is also with weight 1 after that we can search the weight which is now equal or greater than 1 which is EB and FB, both have edge weight is 2 then we can choose any of them so let’s take FB. As no cycle is formed so include it in our minimum spanning tree. We next consider the smallest weighted edge from remaining edges FG having weight 3. As no cycle is formed, include it in our minimum spanning tree.
We next consider the smallest weighted edge from remaining edges GH having weight 3. As no cycle is formed, include it in our minimum spanning tree. We next consider the smallest weighted edge from remaining edges GC having weight 4. As no cycle is formed, include it in our minimum spanning tree.
Finally consider the smallest weighted edge from remaining edges GD having weight 5. As no cycle is formed, include it in our minimum spanning tree.

considering the smallest weighted edge so there we have two options that is AE or EF we can choose any of them edge.
So, lets AE is our first edge with weight 1. Then again we have to search the next minimum edge in the tree that is EF which is also with weight 1 after that we can search the weight which is now equal or greater than 1 which is EB and FB, both have edge weight is 2 then we can choose any of them so let’s take EB. As no cycle is formed so include it in our minimum spanning tree. We next consider the smallest weighted edge from remaining edges FG having weight 3. As no cycle is formed, include it in our minimum spanning tree.
We next consider the smallest weighted edge from remaining edges GH having weight three. As no cycle is formed, include it in our minimum spanning tree. We next consider the smallest weighted edge from remaining edges GC having weight 4. As no cycle is formed, include it in our minimum spanning tree.
Finally consider the smallest weighted edge from remaining edges GD having weight 5. As no cycle is formed, include it in our minimum spanning tree.

So, the number of minimum spanning trees are: .According to Kruskal’s algorithm the order of the edges added to the MST are:
By sort all the edges in increasing order of their edge weight and pick the smallest one
So, Let’s start our sorting then we have two options that is AE and EF both has weight one. Let’s pick AE first then after EF. now search for next again we have two options that is EB and FB both has weight 2. Let’s choose FB with weight two also check if the new selected edge does create a cycle in the spanning tree or not if not then select that edge. After that select FG with weight three. Then GH with weight three. Then select wedge GC and GD with weight four and five. Then we get our final order of edges in minimum spanning tree.So, the order of the edges added to the minimum spanning tree are AE,EF,FB,FG,GH,GC,GD
Hence, this procedure returns a minimum spanning tree and at most four iterations it will take.