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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started