0
I need a company expectation questions in python
3 Respuestas
+ 2
It's a concept in computer science, FIFO stands for (First In, First Out), like a queue. An example of this is a lineup at a Starbucks or store.
In computers, this is a list sequence. You simply build a function(s) that will:
a) create a list
b) when a new value is added, it is added at the back of the list. This is called (enqueue)
c) when a value is extracted, it's the very first value of the list. This is called (dequeue)
It sounds very simple, but it's important you know this as it's everywhere in computers. Your video buffer on YouTube works on the same principle for example.
+ 1
build a FIFO protocal module, a queue system in other words.
0
What u hv texted?