In the following program I need to know 1) the line numbers were variable scope is visible and 2) name the actual and formal parameters in the program.
1 public class Scope {
2 public static void test(int num) {
3 if (num > 10) {
4 int half = num / 2;
5 System.out.println(“Half num = “ + half);
6 } else {
7 System.out.println(num);
8 }
9 }
10 public static void main(String[] args)
11 {
12 int x = 5;
13 test(x);
14 }
15 }