Services
Discover
Homeschooling
Ask a Question
Log in
Sign up
Filters
Done
Question type:
Essay
Multiple Choice
Short Answer
True False
Matching
Topic
Computing
Study Set
Absolute Java Study Set 1
Quiz 6: Arrays
Path 4
Access For Free
Share
All types
Filters
Study Flashcards
Practice Exam
Learn
Question 41
Essay
What is the output of the following code? int[] numbers = new int[10]; forint i=0;i < numbers.length;++i) numbers[i] = i * 2; forint i=0;i < numbers.length;++i) System.out.printnumbers[i] / 2 + " "); System.out.println);
Question 42
Essay
Write a complete Java console application that prompts the user for a series of quiz scores.The user should type -1 to signify that the input of quiz scores is complete.Your program should then average the scores and display the result back to the user.