Answer:
The term <u>absolute</u> distinguishes it from a relative address, which indicates a location specifying a distance from another location. <u>Absolute addresses</u> are also called real addresses and machine addresses.
Explanation:
Sorry, I'm not so good at explaining things.. I hope I kinda gave you an idea on what it is though.
Correct question:
What is the missing line?
>>> myDeque = deque('math')
>>> myDeque
deque(['m', 'a', 't'])
Answer:
myDeque.pop()
Explanation:
The double ended queue, deque found in the python collection module is very similar to a python list and can perform operations such as delete items, append and so on.
In the program written above, the missing line is the myDeque.pop() as the pop() method is used to delete items in the created list from the right end of the list. Hence, the 'h' at the right end is deleted and we have the output deque(['m', 'a', 't'])
myDeque.popleft () deletes items from the right.
Front is the answer because the fish is in red while the rest are in blue