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?"

🎲 Try a Random Question  |  Total Questions in Quiz: 75  |  🧠 Study this quiz with Flashcards
This question is part of a full practice quiz:
CIW Perl Specialist Exam 1D0-437 - Practice Test 2 — practice the complete quiz, review flashcards, or try a random question.


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?"