Question:What will be the correct output of the following syntax?<?php $val1=”1.2e3”; $val2=2; Echo $val1 * $val2; ?>
<?php $val1=”1.2e3”; $val2=2; Echo $val1 * $val2; ?>
A 2400 B 24e C 2.4e3 D 243e
+ AnswerA
+ Report