Vidyalelo
Data Structure · Q42

Arrays in Data Structures

Programming · Data Structure · question 42

Q42

How do you find the maximum element in an array in Python?

A.
max(array)
Answer
B.
array.max()
C.
max(array[])
D.
array.maximum()

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board