1. Data in a singly linked structure are contained in

a cells

b nodes

2.  Most operations on singly linked structures run in

a constant time

b linear time

3.  It requires constant time to remove the first item from a(n)

a array

b singly linked structure

4. Add an instance variable _logicalSize to the Array class. This variable is initially 0, and will track the number of items currently available to users of the array. Then add the method size() to the Array class. This method should return the array’s logical size. The method __len__ should still return the array’s capacity or physical size.