Multiple Choices
(Choose 2 answers)
(Select two)
Given the following class definition, which of the following statements would be legal after the comment //Here
class InOut
String s= new String("Between");
public void amethod(final int iArgs){
int iam;
class Bicycle{public void sayHello(){
//Here
}
}//End of bicycle class
}//End of amethod
public void another(){
int iOther;
}
}
A. System.out.println(s);
B. System.out.println(iOther);
C. System.out.println(iam);
D. System.out.println(iArgs);