Question: Programming Project - 4 In this project using java you will store and display a list of equities, stocks and ETFS and display them. You

Programming Project-4
In this project using java you will store and display a list of equities, stocks and ETFS and display them. You
will add and delete elements from the list using the LinkedList class in java.util.
I am giving you an equities class to use. This class is attached to the assignment.
Write a Java program that does the following.
Main program
Instantiate a class for "XOM", "Exon Mobile Corporation", 200,110.65
call the object P0S1
Instantiate a class for "D","Dominion", 100,78.30 call the object P0S2.
Instantiate a class for "AAPL","Apple",250,178.30 call the object
P0S3.
Instantiate a class for "VZ", "Verizon" ,150,32.41 call the object P0S4
Create a linked list object that will hold Equity objects and add objects POS1, POS2, and
POS3 to the list.
Write a for loop that will walk the list and display each object in the list.
Insert the Verizon object (POS4) into the list between the Dominion (POS2) and Apple
(POS3) objects.
Display the list again.
Remove the Verizon object (POS4) from the list.
Display the list again.
Programming Project - 4 In this project using

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 Programming Questions!