Q32Comprehension3 Marks3 Dec 2023
Passage
Based on the above data, answer the given subquestions. Consider the following pseudocode.
```
M = [0]
MA = [[9], [9, 8], [9, 8, 7]]
MB = []
MC = []
foreach A in MA {
foreach B in A {
MB = [B] ++ MB
M = [last(MB) + B]
}
MC = [MB] ++ MC
MB = []
}
```
Based on the parent pseudocode, what will be the value of `MC` at the end of execution?