Q57.What will be the value of `D` at the end of execution of the following pseudocode?
```
D = {'a': {'a': 5, 'b': 4}, 'b': 1}
D['b'] = D['b'] + D['b']
```
Save
Check
Details
Q57
20 Nov 2022
Q57.What will be the value of `D` at the end of execution of the following pseudocode?
```
D = {'a': {'a': 5, 'b': 4}, 'b': 1}
D['b'] = D['b'] + D['b']
```