Question: please answer this question by using the java programming language To test your ability to write methods and use them to create organized and efficient
please answer this question by using the

java programming language
To test your ability to write methods and use them to create organized and efficient code. Directions and Examples You've been hired by a game development company to write two methods for the inventory system irn their new RPG game. The inventory is implemented as an array of strings, each containing the name of the item at that position. The first method will be to remove an item from the inventory. It must take the inventory (String array) and the name of the item to be removed (String) as parameters. The method will delete the item in the inventory and shift each item ahead of it back one to correct for the empty space. (For example, if the array consisted of ["Sword", "Shield", "Bow"l, and you wanted to remove "Shield", the new array would look like ["Sword", "Bow"]). The second method will be to display the inventory in a proper, inventory-like manor. This method will take only the inventory (String array) as a parameter. Each row of inventory items (with the exception of the last row) must contain four items. If the number of items in the inventory is not a multiple of four, then the last row can contain fewer items. For example, if the inventory list was: I"Sword", "Shield", "Bow, "Potion", "Arrows". "Armor", "Axe" Then the output should look like this: Sword Shield Bow Potion Arrows Armor Axe
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
