public class MyClass1 {
public static void main(String argv[]){ }
/*Modifier at XX */ class MyInner {}
}
What modifiers would be legal at XX in the above code?
1) public
2) private
3) static
4) friend
marcus green says that answer is 1,2,3 but isnt this wrong....method inner class can only have abstract and final but not both...right?