I need a company expectation questions in python | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
0

I need a company expectation questions in python

8th Jul 2017, 6:21 PM
narmada indu
narmada indu - avatar
3 ответов
+ 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.
8th Jul 2017, 6:46 PM
Sapphire
+ 1
build a FIFO protocal module, a queue system in other words.
8th Jul 2017, 6:31 PM
Sapphire
0
What u hv texted?
8th Jul 2017, 6:37 PM
narmada indu
narmada indu - avatar