Question 1
Statement
The following pseudocode is executed using the "Scores" dataset. At the end of the execution of below pseudocode, if count2 represents the number of male students whose Physics marks are less than or equal to Mathematics marks, then select the correct code fragment for A and B.
count1 = 0, count2 = 0while(Table 1 has more rows){ Read the first row X in Table 1 if(....A.... or ....B....){ count1 = count1 + 1 } else{ count2 = count2 + 1 } Move X to Table 2}