Tag: testing
Questions Related to testing
Local inner classes cannot access the local data members of the method in which they are defined.
Which of the following two functions will be invoked when the function call given is---- show(10,10);
The data-members of the Interface can be static or non-static.
What is the output??
interface My {
int x=10;
}
class Test implements My {
public static void main(String[] s) {
System.out.println(My.x);
System.out.println(x);
x=x+10;
System.out.println(x);
}
};