Q. what is the output of below program?
Code:
<?php
$cars=array("Maruti","Honda","BMW");
echo sizeof($cars) + 1;
?>
β
Correct Answer: (C)
4
<?php
$cars=array("Maruti","Honda","BMW");
echo sizeof($cars) + 1;
?>
You must be Logged in to update hint/solution