Question: 24
Consider the code snippet:
function start(){
printNumbers(12, 17, 65);
printNumbers(1, 2, 3);
printNumbers(3, 3, 20);
}
function printNumbers(first, second, third){
println(first);
println(second);
println(third);
}
What are the parameters of the printNumbers method?
12, 17, 65
1, 2, 3
3, 3, 20
first, second, third
1 answer
The parameters of the printNumbers method are first, second, and third.