Question:What is the output of the following code?$a = 3; $b = 2; echo (int)$a/(int)$b;
$a = 3; $b = 2; echo (int)$a/(int)$b;
A 1 B 1.5 C 2 D 3 E Error
+ AnswerB
+ Report