You are given a task to store student grades for different subjects. Which type of PHP array would be most efficient for this?
- Associative Array
- Numeric Array
- Multidimensional Array
- Linked List
An associative array would be the most efficient for storing student grades for different subjects. It allows you to associate each subject with its respective grade, making it easy to access grades by subject name.
Loading...