size() returns the number of items in the deque. It needs no parameters and returns an integer
Anonymous Quiz
92%
T
8%
F
add_rear(item) adds a new item to the front of the deque. It needs the item and returns nothing.
Anonymous Quiz
21%
T
79%
F
remove_front() removes the front item from the deque. It needs parameters and returns the item
Anonymous Quiz
39%
T
61%
F
remove_rear() removes the rear item from the deque. It needs no parameters and returns the item
Anonymous Quiz
71%
T
29%
F
Using python list , Deque ADT "add_front()" is implemented using append (item)
Anonymous Quiz
82%
T
18%
F
Using python list , Deque ADT "add_rear()" is implemented using insert (1,item)
Anonymous Quiz
34%
T
66%
F
Using python list , Deque ADT "remove_rear()" is implemented using pop ()
Anonymous Quiz
36%
T
64%
F
Using python list , Deque ADT "remove_front()" is implemented using pop ()
Anonymous Quiz
86%
T
14%
F
A ........is a string that reads the same forward and backward, for example, radar, toot, and madam
Anonymous Quiz
4%
Postponed
1%
Panadol
90%
palindrome
5%
pipeline
Both array-based sequences and linked lists keep elements in a certain order, but using a very different style.
Anonymous Quiz
85%
T
15%
F
Lists are ….whereas arrays are …
Anonymous Quiz
6%
fixed – dynamic
2%
fixed – fixed
92%
dynamic – fixed
0%
dynamic – dynamic
Arrays waste memory in terms of extra reference points. Linked lists waste memory by allocating lots of space initially.
Anonymous Quiz
22%
T
78%
F
search(item) searches for the item in the list. It needs the item and returns the item
Anonymous Quiz
57%
T
43%
F
List() creates a new list that is empty. It needs no parameters and returns an empty list
Anonymous Quiz
85%
T
15%
F
Each node contains the list item’s data itself + a reference to the next node
Anonymous Quiz
96%
T
4%
F