Q6Single correct5 Marks24 Dec 2023
The following pseudocode is executed using the 'Scores' dataset.
```
count = 0
while(Table 1 has more rows){
A = 0, B = 0, C = 0
Read the first row x in Table 1
if(x.Gender == 'M'){
A = 1
}
if(x.cityTown == "Chennai"){
B = 1
}
C = A + B
if(***Statement I***){
count = count + 1
}
Move x to table 2
}
```
Match the following for different expressions of Statement I with the appropriate Value of count.