Question: Find the Error Below ar 5 different sets or lines of code. Each problehas errors of some kind. Find the errors and list them under
Find the Error
Below ar 5 different sets or lines of code. Each problehas errors of some kind. Find the errors and list them under each problem. You do not haft to correct the code just find the errors.
1. int[] collection = new int[-20];
2. int[] hours = 8, 12, 16;
3. int[] table = new int[10]; Scanner keyboard = new Scanner(System.in); for (int x = 1; x <= 10; x++) {
System.out.print("Enter the next value: ");
table[x] = keyboard.nextInt(); }
4. String[] names = { "George", "Susan" };
int totalLength = 0; for (int i = 0; i < names.length(); i++)
totalLength += names[i].length;
5. String[] words = { "Hello", "Goodbye" };
System.out.println(words.toUpperCase());
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
