(Choose 2 answers)
/Here? (Select two)/
Given the following class definition, which of the following methods could be legally placed a
public class Rid{
public void amethod(int i, String s){}
//Here
}
A. public void amethod(String s, int i){}
B. public int amethod(int i, String s){}
C. public void amethod(int i, String mystring){}
D. public void Amethod(int i, String s) {}
Eut