
1) Write a java program that prompts the user to enter ten integer values and reads them into an array.
The program should consist of the following methods:
• a method named countOccurences that accepts an array of integer values and an
integer search value. This method should return the number of occurrences of the
integer search value.
• a method named searchIndex that accepts an array of integer values and an integer
search value. This method should return the index of the last occurrence of the search
value. If the search value does not occur in the array the method should return -1.
• a method named sumWithoutSmallest that accepts an array of integer values and
returns the sum of all the values in the array except the smallest one.
Invoke the above methods and demonstrate them in the program. Save the program as
ArrayOperations.java.
Here is a sample run:
Enter ten numbers: 2 3 4 4 2 7 4 5 6 3
Enter a search value: 4
The number 4 occurs 3 times in the array
The last occurrence of number 4 is at index position 6
The sum of all the values in the array except the smallest is:
36

Trending nowThis is a popular solution!
Step by stepSolved in 2 steps with 3 images

- Write a netbeans program that: 1. Creates an array (Nums) which can hold 10double values. 2. Fill the array with different random numbers from 1 to 100. 3. Print the values in the array on the screen. 4. Calculate the sum of all values in the array, and display the sum.5. Calculate the average of all values in the array, and display the average.6. Search to find the largest value in the array, and display that value.7. Search to find the smallest value in the array, and display that value.8. Prompt the user for an integer. Search through the array, and if the item is present, give the index number where it is located. If the value is not in the array, display a single message saying so.arrow_forwardjavaarrow_forwardJavaarrow_forward
- JavaDriver Program Write a driver program that contains a main method and two other methods. Create an Array of Objects In the main method, create an array of Food that holds at least two foods and at least two vegetables. You can decide what data to use. Method: Print Write a method that prints the text representation of the foods in the array in reverse order (meaning from the end of the array to the beginning). Invoke this method from main. Method: Highest Sugar Food Write a method that takes an array of Food objects and finds the Food that has the most sugar. Note that the method is finding the Food, not the grams of sugar. Hint: in looping to find the food, keep track of both the current highest index and value. Invoke this method from main.arrow_forwardprogramming used: javaarrow_forwardComputer sciencearrow_forward
- Java code: declare an array of type Animal and create an array for this variable which can hold 5 animals.arrow_forwardTASK 1: Write a Java program that do the following: [10 Marks] 1. Define and create an ArrayList which is called "itemsList" of Integer objects. [1 mark] 2. Define and create an array which is called "numList" with five integer vales. [1 mark] 3. Copy the five values from the array "numList" o ArrayList using a for loop. [2 marks] 4. Display the contents of the ArrayList with a message using the for loop with the get method. marks] 5. Display the size of ArrayList with a message. [1.5 mark] 6. Find the sum of ArrayList. [3 marks] [1.5arrow_forwardUsing C# create a console app doing the following Write a method that takes two integers and displays their sum. Write a method that takes five doubles and returns their average. Write a method that returns the sum of two randomly generated integers. Write a method that takes three integers and returns true if their sum is divisible by 3, false otherwise. Write a method that takes two strings and displays the string that has fewer characters. Write a method that takes an array of doubles and returns the largest value in the array. Write a method that generates and returns an array of fifty integer values. Write a method that takes two bool variables and returns true if they have the same value, false otherwise. Write a method that takes an int and a double and returns their product. Write a method that takes a two-dimensional array of integers and returns the average of the entries.arrow_forward
- Problem Description - JAVA PROGRAMMING Use a Two-dimensional (3x3) array to solve the following problem: Write an application that inputs nine numbers, each of which is between 1 and 10, inclusive. Display the array after the user inputs each value. Rotate/flip the array by changing places. Make the rows columns and vice versa. You have to move the elements to their new locations. Remember to validate the input and display an error message if the user inputs invalid data. Documentation and the screenshot(s) of the results. Example: 1 2 3 4 5 6 7 8 9 the result will be : 1 4 7 2 5 8 3 6 9arrow_forwardRetailItem Class Write a class named Retailltem that holds data about an item in a retail store. The class should have the following fields: • description. The description field references a String object that holds a brief description of the item. • unitsOnHand. The unitsOnHand field is an int variable that holds the number of units currently in inventory. • price. The price field is a double that holds the item's retail price. Write a constructor that accepts arguments for each field, appropriate mutator methods that store values in these fields, and accessor methods that return the values in these fields. Once you have written the class, write a separate program that creates three RetailItem objects and stores the following data in them: Description Units on Hand Price Item #1 Jacket 12 59.95 Irem #2 Designer Jeans 34.95 [rem #3 Shirt 24.95arrow_forwardDesign an application that declares an array of 10 StockTransactionobjects. Prompt the user for data for each object, and then display all the values. Design an application that declares an array of 10 StockTransactionobjects. Prompt the user for data for each object, and then pass the array to a method that determines and displays the two stocks with the highest and lowest price per share.arrow_forward
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education





