Question 1
The following pseudocode is executed using the "Scores" dataset. What will count represent at the end of the execution?
count = 0while(Table 1 has more rows){ flag1 = False, flag2 = False Read the first row X in Table 1 if(X.Gender == 'M'){ flag1 = True } if(X.CityTown == "Chennai"){ flag2 = True } if(flag1 == flag2){ count = count + 1 } Move X to Table 2}Number of students who are either male or are from Chennai.
Number of female students from other than Chennai.
Number of male students from Chennai + number of female students from other than Chennai.
Number of all students except male students from other than Chennai.
