
Write a Java program that uses ArrayList and Iterator. It should input from user the names and ages of your few friends in a loop and add into ArrayList. Finally, it should use an Iterator to display the data in a proper format.
( Sample run of the program:-)
List of my Friends
Enter name and age [friend# 0]
Khalid Al-shamri
22.5
Do you want to add another friend (y/n)? y
Enter name and age [friend# 1]
Rahsed Al-anazi
21.1
Do you want to add another friend (y/n)? y
Enter name and age [friend# 2]
Salem Al-mutairi
23.7
Do you want to add another friend (y/n)? n
Here is the data you entered:
0. Khalid Al-shamri, 22.5
1. Rahsed Al-anazi, 21.1
2. Salem Al-mutairi, 23.7

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

- Below are five expressions, each involving some numpy array, A. Without knowing the elements of A, match each expression with its resulting array. Note: You may assume that numpy has been imported under the name np. [[ e. -e. e.] [ 0. 0. -2.] [-0. 2. -4.]] [[16. 1. 9.] [4. 0. 1.] [25. 1. 1.]] [[-1. 7. -8.] [-3. -3. 5.] 6.-15.]] [ 17. [[ 2. 2. 2.] [-1. -1.-1.] [3. 3. 3.]] [[ 8. -1. 2.] [-1.0. e.] [ 2. e. -2.]] ✓ Choose... A**2 A+A.T A@np.ones((3,3)) np.array([[A[i,j]*i*j for i in range(3)] for j in range(3)]) np.linalg.matrix_power(A,2) Choose... Choose... Choose...arrow_forwardGiven a file of unsorted words with mixed case: read the entries in the file and sort those words lexicographically. The program (in c++) should then prompt the user for an index, and display the word at that index. Since you must store the entire list in an array, you will need to know the length. The "List of 1000 Mixed Case Words" contains 1000 words. You are guaranteed that the words in the array are unique, so you don't have to worry about the order of, say, "bat" and "Bat."arrow_forwardPLEASE TYPE ONLY*** JAVA PROGRAMMING Task: a program called ArrayList_Practice. In this program, please do the following operations. Complete a method called RedundantCharacterMatch(ArrayList<Character> YourFirstName): the parameter of this method is an ArrayList<Character> whose elements are the characters in your first name (they should be in the order appear in your first name, e.g., if your first name is bob, then the ArrayList<Char> includes ‘b’, ‘o’, ‘b’.). The method will check whether there exists duplicate characters in your name and return the index of those duplicate characters. For example, when using bob as first name, it will return b: 0, 2. Create ArrayList<Character> NameExample. All the characters of your first name will appear twice in this ArrayList. For example, if your first name is bob, then NameExample will include the following element {b,o,b,b,o,b}. Then, please use NameExample as parameter for the method RedundantCharacterMatch().…arrow_forward
- C++arrow_forwardUse Python code with: "def recolorImage(img,color):" without using cv2 or PIL recolor(img, color) - Changes all non-white pixels of the image referred to by the parameter img to the specified color, and returns a new image with the changes. img is a 2D array of RGB pixels which represent images. color is a list containing 3 integers, each from 0 to 255, representing RGB values. To create a new image use the cmpt120image.getBlackImage() function which returns a new canvas to draw on.arrow_forwardGive me correct code. Downvote for incorrect and copied code. Changes in function..arrow_forward
- Please use easy logic with proper indentations and comments for understanding!. Coding should be in C++. 3. Define a class which stores up to 10 integer values in an array. The class should also define the following 4 public methods: setNumber – accepts an integer value to store in the array. The value is stored in the next available element of the array (first call to the method stores the value in element 0 with the second call storing the value in element 1.) The method returns true if there is room in the array and the integer was successfully stored. Returns false otherwise. clear – removes all values from the array so that the array can be reused. displayNumbers – displays the values currently stored in the array. getStats – determines the largest, smallest, and average of the values currently stored in the array. These values are returned to the caller via reference parameters. All methods should produce correct results regardless of the order in which…arrow_forwardneed commented java codearrow_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





