logo CodeStepByStep logo

parameterMystery4

Language/Type: JavaScript parameter mystery reference semantics
Author: Melissa Hovik (on 2016/09/25)

Assume the following functions are defined:

function main() {
    let bit = "byte";
    let byte = bit;
    let nibble = "bit";
    mystery(bit, nibble, "nibble");
    mystery("byte " + bit, byte + " bit", "nibble nibble");
    mystery(bit, bit, nibble + " " + bit);
}

function mystery(nibble, bit, byte) {
    byte = "nibble";
    console.log("How many " + bit + "s in a " + byte + " of " + nibble + "s?");
}

What console output would result from calling main?

mystery(bit, nibble, "nibble");
mystery("byte " + bit, byte + " bit", "nibble nibble");
mystery(bit, bit, nibble + " " + bit);

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.