Question: For each of the variables in the following program, indicate the scope. Then determine what the program prints, without actually running the program. public class

For each of the variables in the following program, indicate the scope. Then determine what the program prints, without actually running the program.
public class Sample
{
public static void main(String[] args)
{
int i =10;
int b = g(i);
System.out.println(b + i);
}
10 public static int f(int i)
{
int n =0;
while (n * n <= i){ n++; }
return n -1;
}
public static int g(int a)
{
int b =0;
for (int n =0; n < a; n++)
{
int i = f(n);
b = b + i;
}
return b;
}
}For each of the variables in the following program, indicate the scope. Then determine what the program prints, without actually running the program.
public class Sample
{
public static void main(String[] args)
{
int i =10;
int b = g(i);
System.out.println(b + i);
}
10 public static int f(int i)
{
int n =0;
while (n * n <= i){ n++; }
return n -1;
}
public static int g(int a)
{
int b =0;
for (int n =0; n < a; n++)
{
int i = f(n);
b = b + i;
}
return b;
}
}For each of the variables in the following program, indicate the scope. Then determine what the program prints, without actually running the program.
public class Sample
{
public static void main(String[] args)
{
int i =10;
int b = g(i);
System.out.println(b + i);
}
10 public static int f(int i)
{
int n =0;
while (n * n <= i){ n++; }
return n -1;
}
public static int g(int a)
{
int b =0;
for (int n =0; n < a; n++)
{
int i = f(n);
b = b + i;
}
return b;
}
}

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 Databases Questions!