The following pseudocode is executed using the Scores table. At the end of the execution, the variable `CountBA` captures the number of students with total marks less than average total marks and below average in exactly one subject. Assume that the variable `AvgT` holds the value of average total marks. Similarly, the variables `AvgP`, `AvgC` and `AvgM` hold the value of average marks of Physics, Chemistry and Mathematics respectively. Choose the correct choice to complete the pseudocode.
```
CountBA = 0
while (Table 1 has more rows) {
Read the first row X from Table 1
SubC = 0
if (X.Total < AvgT) {
if (X.Mathematics < AvgM) {
SubC = SubC + 1
}
if (X.Physics < AvgP) {
SubC = SubC + 1
}
if (X.Chemistry < AvgC) {
SubC = SubC + 1
}
** Fill the code **
}
Move X to Table 2
}
```