Question: What is the proper way to define a function?
- `def getMaxNum(list_of_nums): # body of function goes here`
- `func get_max_num(list_of_nums): # body of function goes here`
- `func getMaxNum(list_of_nums): # body of function goes here`
- `def get_max_num(list_of_nums): # body of function goes here`
Answer: The correct answer of the above question is Option D:`def get_max_num(list_of_nums): # body of function goes here`