Question: Consider the following methods. public void trial () {int a = 10; int b = 5; doublevalues (a, b); System. out. print (b); System out.

Consider the following methods. public void trial () {int a = 10; int b = 5; doublevalues (a, b); System. out. print (b); System out. print (a);} public void doublevalues (int c, int d) {C = C * 2; d = d * 2; System.out.print(c); System.out.print(d);} What is printed as the result of the trial () ? (A) 2010 (B) 2010105 (C) 2010510 (D) 20102010 (E) 20101020
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
