he following function amax takes a list (intList) of 10 positive integers as an argument. Select the correct option. def amax (intlist): max = 0 for num in range (len (intlist)): if num > max: max = intlist[num] return max

The function will run to completion but may/will not return the max value integer in intlist.
The function will always return the maximum value integer in the parameter intlist.
The function may/will generate an error.
The function may will loop infinitely