Q. In PHP, if $a represents an array with numeric indices, how is the first element accessed?
β
Correct Answer: (B)
$a[0]
Explanation: This question asks about how to access the first element of an array in PHP. Arrays are like lists of data, and each element has a position, called an index.