(Choose 2 answers)
Given the following class definition, which of the following statements would be legal after (Select two)
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);
Finish
7