Sort And Searching Question:
Tell me which of the following maintain index associations?
• ksort
• asort
• sort

Answer:
These are php sorting methods.
ksort and asort maintain index associations and sort from lowest to highest. ksort sorts keys.
sort doesnt maintain index associations.
ksort and asort maintain index associations and sort from lowest to highest. ksort sorts keys.
sort doesnt maintain index associations.