Online Access Free 200-550 Exam Questions
Exam Code: | 200-550 |
Exam Name: | Zend Certified PHP Engineer |
Certification Provider: | Zend-Technologies |
Free Question Number: | 223 |
Posted: | Sep 05, 2025 |
What is the output of the following code?
function ratio ($x1 = 10, $x2) {
if (isset ($x2)) {
return $x2 / $x1;
}
}
echo ratio (0);