Question:What will be the followings script output? <?php $colorList[0] = "red"; $colorList[1] = "green"; $colorList[2] = "blue"; $colorList[3] = "black"; echo sizeof($colorList); ?>
A 4 strings B 4 C 4 array
+ AnswerB
+ Report