(Choose 1 answer)
If you run the code below, what gets printed out?
int iBegin=1;
String s=new String("Bicycle");
char iEnd=3;
System.out.println(s.substring(iBegin, iEnd));
A. error: no method matching substring(int.char)
B. icy
C. Bic
D. ic
Exit (18