Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Q 1. Write the implementation java code for a class named Stock that contains: 1. A string data field named symbol for the stocks symbol.

Q 1. Write the implementation java code for a class named Stock that contains:
1. A string data field named symbol for the stocks symbol.
2. A string data field named name for the stocks name.
3. A double data field named previousClosingPrice that stores the stock price for the previous day.
4. A double data field named currentPrice that stores the stock price for the current time.
5. An integer data field named ID that stores the identifier number of stock.
6. A constructor that creates a stock with the specified symbol, name, and ID.
7. A method named getChangePercent() that returns the percentage changed from previousClosingPrice to currentPrice.
double getChangePercent(){
return 100 * (currentPrice - previousClosingPrice) / previousClosingPrice;
}
Write a test program that:
1. Create a random object from the Random class (java.util.Random). We will use this object for the ID number of Stock between (0 to 100).
2. Ask a user for the name and symbol of Stock. So, you should create two string variables in the test program.
3. Create a Stock object with the stock symbol (from the user), the name of symbol (from the user), and ID (from Random object by using nextInt(100) method).
4. Ask the user for the previous closing price and the current price. Note: Don't create two variables for them. You can use the Stock object to assign the values of these two variables from the user.
5. Display the stock name, the stock symbol, the stock ID, and the pricechange percentage.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Machine Learning And Knowledge Discovery In Databases European Conference Ecml Pkdd 2018 Dublin Ireland September 10 14 2018 Proceedings Part 1 Lnai 11051

Authors: Michele Berlingerio ,Francesco Bonchi ,Thomas Gartner ,Neil Hurley ,Georgiana Ifrim

1st Edition

3030109240, 978-3030109240

More Books

Students also viewed these Databases questions