logo CodeStepByStep logo

parameter_mystery9

Language/Type: PHP parameter mystery parameters return

The following console program uses parameters and returns to produce three lines of output. What are they?

function mystery($b, $c) {
    return $c + 2 * $b;
}

$a = 4;
$b = 2;
$c = 5;

$a = mystery($c, $b);
$c = mystery($b, $a);
print("$a\n");
print("$b\n");
print("$c\n");
line 1
line 2
line 3

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? Contact your TA or instructor.

If something seems wrong with our site, please

Is there a problem? Contact us.