Question 4
The following pseudocode is executed using the "Olympics" dataset. Count represents the number of pairs of distinct players who won the same medal but not in the same sport. Assume that no player won more than one medal. Choose the correct code fragment to complete the pseudocode. It is a Multiple Select Question (MSQ).
Count = 0while (Table 1 has more rows) { Read the first row X in Table 1 Move X to Table 2 while (Table 1 has more rows) { Read the first row Y in Table 1 Move Y to Table 3 ******************** * Fill the code * ******************** } Move all rows from Table 3 to Table 1}