Question
In java Review Assignment on Classes and Objects Part 1: Design a Stock class that contains information for: stock symbol, company name, and stock price.
In java
Review Assignment on Classes and Objects Part 1: Design a Stock class that contains information for: stock symbol, company name, and stock price. The Stock class will provide the ability to initialize the stocks values. If the values are not provided, default values will be used. The class will provide the capability to compute the cost of purchasing the stock, given the stocks price per share, and a number of shares to be purchased (number of shares will be provided by the user). Users of the class can also reset the value for the stocks price, and view the stocks information. Class Design Complete the design of the class below. Specify the accessibility (public vs. private) for the attributes and methods, as well as the data types for the attributes, and return types and parameters for the methods.
Attribute list:
Method list:
Stock.java
publicclass Stock {
}//end of Stock class
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started