Vidyalelo
PHP · Q46

Arrays

Programming · PHP · question 46

Q46

What elements will the following script output? 'a', 1 => 'b'); var_dump ( array); ?>

A.
1 => 'b'
B.
True => 'a', 1 => 'b'
C.
0 => 'a', 1 => 'b'
D.
None
E.
It will output NULL
Answer

Answer: Option E

Solution

Answer: Option E
No explanation is given for this question Let's Discuss on Board