Question: What is the correct way to call a function?
- `get_max_num([57, 99, 31, 18])`
- `call.(get_max_num)`
- `def get_max_num([57, 99, 31, 18])`
- `call.get_max_num([57, 99, 31, 18])`
Answer: The correct answer of the above question is Option A:`get_max_num([57, 99, 31, 18])`