Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

learn.vccs.edu 6. Write a statement that declares an array named languages. The

ID: 3739113 • Letter: L

Question

learn.vccs.edu 6. Write a statement that declares an array named languages. The array must hold the following String values: "English", "Spanish", and "French". (10 points) 7. Assume you have an array named inputs containing double-type values. Also assume you have a double-type variable named product, initialized to 1.0. Write a code excerpt that multiplies al elements of inputs together and saves the result to product, using an enhanced for loop. (10 points) 8. This class contains static methods that sort values in arrays, find whether or not a value exists in an array, or display the values in an array as a String 9. A Java programmer asks you if he should use an array or an ArrayList. He says the following: Should he use an array or an ArrayList? Explain why. (7 points) 10. A Java programmer asks you if she should use an array or an ArrayList. She says the following Should she use an array or an ArrayList? Explain why. (7 points) 11. Write a code excerpt that performs the following actions: "I want to change the number of elements. I want store primitive-type values. Declare an empty ArrayList named courses that can hold String values.

Explanation / Answer

Solution:

The first question is done as per Chegg guidelines, please repost others.

6)

String languages[0]= {"English"}

String languages[1]= {"Spanish"}

String languages[2]={"French"};

I hope this helps if you find any problem. Please comment below. Don't forget to give a thumbs up if you liked it. :)