Leave a Reply 5

Your email address will not be published. Required fields are marked *


mrZ

mrZ

A

Ryan

Ryan

Agree, and so does compilejava.net.

hugo

hugo

Why B?
I tested and the result was A

renko

renko

Answer: A

Code question:
public class Test3 {

public static void main(String[] args) {
String names[] = new String[3];
names[0] = “Mary Brown”;
names[1] = “Nancy Red”;
names[2] = “Jessy Orange”;
try {
for (String n: names){
try {
String pwd = n.substring(0, 3) + n.substring(6,10);
System.out.println(pwd);
}
catch (StringIndexOutOfBoundsException sie) {
System.out.println(“string out of limits”);
}
}

}
catch (ArrayIndexOutOfBoundsException e) {
System.out.println(“array of of limits”);
}
}

}
Output:
Marrown
string out of limits
JesOran