Find element in unordered list by predicate

Assume we have an unordered list of objects and we want to find particular element based on the predicate.
As elements can appear in any order, we cannot use any search algorithms, we have to iterate over all the elements in the collection.
Let’s check what are the ways of finding such element.