Consider the following program code:
$x = 150;
$y = “250”;
if (($x + 100) == $y) { print(“1 “); }
if (“250” == $y) { print(“2 “); }
if (“250” eq $y) { print(“3 “); }
if ($x lt $y) { print(“4 “); }
if ($x ge $y) { print(“5 “); }
What is the result of executing this program code?
A.
The code will output the following:
1 2 3 4
B.
The code will output the following:
1 3 4
C.
The code will output the following:
1 3 5
D.
The code will output the following:
1 2 3 4 5