Question:<?php $a[0] = 1; $a[1] = 3; $a[2] = 5; $result = count($a); print_r($result); ?> What will be the output?
A 3 B Array([0]=>3) C 2
+ AnswerA
+ Report