Question:What is the output of the following array function?
$a = range(0, 20, 2);
A $a = array(0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20);
B $a = array( 2, 4, 6, 8, 10, 12, 14, 16, 18, 20);
C $a = array(2, 4, 6, 8, 10, 12, 14, 16, 18);
D None
+ AnswerA
+ Report