Which sorting algorithm repeatedly finds the minimum element from the unsorted part and puts it at the beginning of the array?
What is the time complexity of binary search on a sorted array of size n?
Which data structure uses last-in, first-out, or LIFO, order for inserting and removing elements?
In a standard queue, which operation removes the item that has been inside the queue the longest?
If an array is already sorted, how many swaps does Bubble Sort perform?
What is the output of this code snippet: print(sorted([3,1,4,2]))?
Which algorithm checks each item in a list sequentially until it finds the target value?
What is the time complexity of inserting an element at the end of a Python list?
Which data structure is best for implementing an undo feature in text editors?
When simulating a line of people at a checkout counter, which data structure best models this scenario?