peek() : adds a new item to the top of the stack. It needs the item and returns nothing. this definition is not true.
Anonymous Quiz
23%
T
77%
F
The order of insertion is the reverse of the order of removalqueue
Anonymous Quiz
24%
queue
73%
stack
4%
Array
Using python list , Stack ADT "peek()"
is implemented using [len (self.item) +1]
is implemented using [len (self.item) +1]
Anonymous Quiz
20%
T
80%
F
Using python list , Stack ADT "size()" is implemented using " len (self.item) "
Anonymous Quiz
90%
T
10%
F
Deque is a hybrid linear structure, so it requires the LIFO and FIFO ordering.
Anonymous Quiz
43%
T
57%
F
in Queue is_empty() : tests to see whether the queue is empty. It needs no parameters and returns the item.
Anonymous Quiz
46%
T
54%
F
enqueue(item) adds a new item to the rear of the queue. It needs the item and returns nothing.
Anonymous Quiz
83%
T
17%
F
Using python list , Queue ADT "enqueue()" is implemented using pop (0 , item)
Anonymous Quiz
20%
T
80%
F
Using python list , Queue ADT "size()" is implemented using len (self.item - 1 )
Anonymous Quiz
32%
T
68%
F
Deque : New items can be added at either the front or the rear.Likewise, existing items can't be removed from either end
Anonymous Quiz
28%
T
72%
F
add_front(item) adds a new item to the front of the deque. It needs the item and returns item.
Anonymous Quiz
34%
T
66%
F