Q2Multiple correct5 Marks6 May 2026
Let LA be a non-empty list of integers. A list LB is constructed using the following pseudocode.
```
LA = [50, 40, 30, 20, 10]
LC = LA
LB = [LA]
while(length(LC) > 1){
LC = rest(LC)
LB = [LC] ++ LB
}
```
Which of the following will return true after the execution of above pseudocode?
────────────────────────────────────────