Home »
MCQs »
PHP MCQs
Which PHP functions are used to find the lowest and highest values from a list of arguments?
67. Which PHP functions are used to find the lowest and highest values from a list of arguments?
- minimum() and maximum()
- min() and max()
- find_min() and find_max()
- getmin() and getmax()
Answer: B) min() and max()
Explanation:
The PHP functions min() and max() are used to find the lowest and highest values from a list of arguments.