I need the missing code
fill in missing pieces of the following code and uncommentit
add appropriate code tohandle an incorrect name
public void displayStudent(String studentName)
{
int index;
index = // fill in code here;
System.out.println(this.stuArray[index]);
}
Answer