Question 12
The following pseudocode is executed using the "Scores" dataset. At the end of the execution, C captures the number of pairs of students who have same date of birth, or the same City/Town but different gender. Choose the correct code fragment(s) to complete the pseudocode. It is a Multiple Select Question
1 C = 0 2 while(Table 1 has more rows){ 3 Read the first row X in Table 1 4 Move X to Table 2 5 while(Table 1 has more rows){ 6 Read the first row Y in Table 1 7 ******************** 8 * Fill the code * 9 ********************10 Move Y to Table 311 }12 Move all rows from Table 3 to Table 113 }