Question: Write a method named addStars that accepts as a parameter an ArrayList of strings, and modifies the list by placing a * element between elements,

Write a method named addStars that accepts as a parameter an ArrayList of strings, and modifies the list by placing a "*" element between elements, as well as at the start and end of the list. For example, if a list named list contains {"the", "quick", "brown", "fox"}, the call of addStars(list); should modify it to store {"*", "the", "*", "quick", "*", "brown", "*", "fox", "*"}.

Make sure to just write one method, not a whole class

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!