Question:<?php $grades = array(42, "hello", 42); $total = array_sum($grades); print $total; ?> This returns the following:
A 48 B 84 C 44 D 42 hello 42
+ AnswerB
+ Report