Question: 1 . Consider the following methods. public void trial ( ) { int a = 1 0 ; int b = 5 ; doublevalues (

1. 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 call trial()?

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!