Question 61 of 76 from exam 1Z0-808: Java SE 8 Programmer I

Question 61 of 76 from exam 1Z0-808: Java SE 8 Programmer I

Question

Given:

public class TestScope {

public static void main(string[] args) {
int varl = 200;
system. out. print (doCale(varl)) i
system.out.print(" "+varl);

i

static int doCale(int varl){
varl = varl * 2;
return

What is the result?

Answers

Explanations

Click on the arrows to vote for the correct answer

A. B. C. D.

A.