You should add the static keyword in the place of ? in Line ________ in the following code: 1 public class Test {2 private int age;34 public ? int square(int n) {5 return n * n;6 }78 public ? int getAge() {9 }10}A. in line 4B. in line 8C. in both line 4 and line 8D. none