When the following array is instantiated, what is the highest index number of any of its elements?
String[] firstNames = new String[10];
10
Question 10
2 pts
In general, if the program refers to an output file that does not exist:
- The program will prompt the user to retry.
- The program will create the output file.
- The program will crash.
Question 11
2 pts
True/False: A method must either receive data or return data. You cannot create a method that does not do one or the other.