Q59Single correct2 Marks20 Nov 2022
Let `'x'`, `'y'`, and `'z'` be the only keys of dictionary `D`, and `L = keys(D)`. At the end of execution of the following pseudocode, `flag` stores `True`. Choose the possible value of `L`.
```
flag = False
position = 0
foreach key in L {
if((position == 1) and (key == 'y')) {
flag = True
}
position = position + 1
}
```