PHP - Operators
Given the code below, what will be the value of
$result after execution?$x = 4;
$y = 3;
$result = 10;
$result += $x * $y;
$result -= 5;
$result /= 2;
