What is printed by the following program?

function printNumbers(two, one, zero){
println(two);
println(one);
println(zero);
}

function start(){
var zero = 0;
var one = 1;
var two = 2;
printNumbers(zero, one, two);
}
JavaScript

2
1
0

0
1
2

zero
one
two

two
one
zero

1 answer

2
1
0
Similar Questions
  1. Question: 24Consider the code snippet: function start(){ printNumbers(12, 17, 65); printNumbers(1, 2, 3); printNumbers(3, 3,
    1. answers icon 1 answer
  2. What is printed by the following code?function printNumbers(first, second, third){ println(first); println(second);
    1. answers icon 1 answer
  3. What are the parameters of the printNumbers function?function printNumbers(first, second, third){ println(first);
    1. answers icon 1 answer
  4. What is printed by the following program?var numApples = 10; var numOranges = 5; if(numApples < 20 || numOranges == numApples){
    1. answers icon 1 answer
more similar questions