Home / Expert Answers / Computer Science / lab-8-one-dimensional-arrays-directions-in-eclipse-create-a-new-java-project-called-labs-if-ask-pa723

(Solved): Lab 8: One-Dimensional Arrays Directions: In Eclipse, create a new Java project called labs (if ask ...




Lab 8: One-Dimensional Arrays
Directions: In Eclipse, create a new Java project called labs (if asked, do NOT create a module
Lab 8: One-Dimensional Arrays Directions: In Eclipse, create a new Java project called labs (if asked, do NOT create a module!). You will be creating a Words class. Write a class called Words, which consists of a single instance variable wordArray, an array of String objects. Aside from the main() method, the class should contain a getNext() method, which returns a random word from the wordArray instance variable and updates wordArray so that it no longer contains the chosen word. If there are no words in the array, it should return the string "NONE". For example, if the main() consisted of the following public static void main(String [] args) \{ String[] stringArray = \{"the", "quick", "brown", "fox" ; Words wordArray new Words (stringArray); for (int it+) \{ System.out.print(wordArray.getNext()); then the text brown the quick fox NONE NONE would be returned (where NONE is returned twice since the method is executed 6 times in the for loop, and there are only 4 words in the initial array).


We have an Answer from Expert

View Expert Answer

Expert Answer


The following is the required program with thoroughly added comments as an explanation:package lab8;import java.util.Arrays;public class Words {String
We have an Answer from Expert

Buy This Answer $5

Place Order

We Provide Services Across The Globe