Q1Single correct5 Marks6 May 2026
The following pseudocode is executed using the "Scores" dataset.
```
Dict = {}
while(Table 1 has more rows){
Read the first row X in Table 1
if(isKey(Dict, X.City)){
if(Dict[X.City]["Total"] > X.Total){
Dict[X.City] = {"Name": X.Name, "Total": X.Total}
}
}
else{
Dict[X.City] = {"Name": X.Name, "Total": X.Total}
}
Move X to Table 2
}
```
At the end of execution, what does Dict represent?
────────────────────────────────────────