Step 1: Analysis of Statement \(S_1\).
A minimum weight edge in a graph is not necessarily present in every minimum spanning tree. If there are multiple edges with the same minimum weight forming cycles, different MSTs can exclude different minimum edges. Hence, the claim that a minimum weight edge must appear in every MST is incorrect. Therefore, \(S_1\) is false.
Step 2: Analysis of Statement \(S_2\).
If all edge weights in a graph are distinct, then no two spanning trees can have the same total weight. This guarantees the uniqueness of the minimum spanning tree. This is a well-known property of MSTs. Hence, \(S_2\) is true.
Step 3: Conclusion.
Since \(S_1\) is false and \(S_2\) is true, the correct option is (C).
Consider the following undirected graph with edge weights as shown. The number of minimum-weight spanning trees of the graph is \(\underline{\hspace{2cm}}\).

In a 4-bit ripple counter, if the period of the waveform at the last flip-flop is 64 microseconds, then the frequency of the ripple counter in kHz is ______________. {(Answer in integer)}
Consider the following C code segment:
int x = 126, y = 105;
do {
if (x > y)
x = x - y;
else
y = y - x;
} while (x != y);
printf("%d", x);
The output of the given C code segment is ____________. (Answer in integer)
The following two signed 2’s complement numbers (multiplicand \( M \) and multiplier \( Q \)) are being multiplied using Booth’s algorithm:
| Multiplicand (\( M \)) | Multiplier (\( Q \)) |
|---|---|
| 1100 1101 1110 1101 | 1010 0100 1010 1010 |
The total number of addition and subtraction operations to be performed is __________. (Answer in integer)
The maximum value of \(x\) such that the edge between the nodes B and C is included in every minimum spanning tree of the given graph is __________ (answer in integer).
Consider the following C program
The value printed by the given C program is __________ (Answer in integer).