What are the different functions in sorting an array?
• arsort(array) :- Sorts the array in descending value order and maintains the key/value relationship • asort(array) :- Sorts the array in ascending value order and maintains the key/value relationship • rsort(array) :- Sorts the array in descending value order • sort(array) :- Sorts the array in ascending value order