What will be the output for the below code?
public class Test{
int i=8;
int j=9;
public static void main(String[] args){
add();
}
public static void add(){
int k = i+j;
System.out.println(k);
}
}
public class Test{
int i=8;
int j=9;
public static void main(String[] args){
add();
}
public static void add(){
int k = i+j;
System.out.println(k);
}
}
A. 17
B. 0
C. Compilation fails with an error at line 5
D. Compilation fails with an error at line 8
E. None of these
Answer: Option D
Solution (By Examveda Team)
i and j are instance variable and attempting to access an instance variable from a static method. So Compilation fails.
Adding int k=i+j;
why can adding int k = i+j;