The following procedure is intended to return true if the list of numbers myList contains only positive numbers and is intended to return false otherwise. The procedure does not work as intended. For which of the following contents of myList does the procedure NOT return the intended result?
[-2, -1, 0]
[-1, 0, 1]
[1, 2, 3]
[-3, -2, -1]



Answer :

Other Questions