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.
Join The Discussion
Comments (2)
Related Questions on Data Types and Variables
Which of the following is not a valid identifier for a Java variable?
A. my_var
B. _myVar
C. 3rdVar
D. $var

Adding int k=i+j;
why can adding int k = i+j;