1.

If $a represents an array with numeric indices in PHP, the first element accessed by ______________(a) $a[1](b) $a[0](c) $a.1(d) $a.0

Answer» The correct option is (b) $a[0]

The best I can explain: If $a represents an array with numeric indices, its elements are accessed as $x[0], $x[1], and so on. In general terms, each element at the position i is accessed and used as $a[i – 1].


Discussion

No Comment Found