Question:Given the two values below, which of the following possiblities will print 10 foos20 bars?<?php$var1 = "10 foos";$var2 = "20 bars";print ???????;?>
10 foos20 bars
<?php$var1 = "10 foos";$var2 = "20 bars";print ???????;?>
A None of the above B implode("", array($var1,$var2)); C $var1 . $var2 D $var1 + $var2 E Al
+ AnswerB C
+ Report