Cons lst = null; for (int i = 0; i < 3; i++ ) lst = append( lst, list(i) );
What is the value of lst?
Answer: D
This use of append is putting the new item at the back of the list, so the list comes out in the order of item creation.
Contents Page-10 Prev Next Page+10 Index