C++ Questions
What is the output of the following pseudocode code:
ages = new List
Append(ages, 55)
Append(ages, 88)
Append(ages, 66)
Print(ages)
A.
55, 66, 88
B.
55, 88, 66
C.
55, because there is no loop
D.
66, because there is no loop
E.
None of the above.
QUESTION 2
Type the list after the given operations. Each question starts
with an empty list. Type the list as: 5, 7, 9
Append(list, 3)
Append(list, 2)
Append(list, 1)
Remove(list, 3)...