Create a Java project called StockTask 1. Write an object class named Stock that contains: A private string data field named symbol for the stock's symbol. A private string data field named name for the stock's name. A private double data field named previousClosingPrice that stores the stock price for the previous day. A private double data field named currentPrice that stores the stock price for the current time. A constructor that creates a stock with the specified symbol and name. Accessor methods (get-methods) for the data fields. Mutator method (set-methods) for the data fields. A method named getChangePercent() that returns the percentage changed from previousClosingPrice to currentPrice. Formula: perc_change = (current price - previous closing price) / previous closing price x 100 2. Write a test class named testStock that creates a Stock object with the stock symbol SUNW, the name Sun Microsystems Inc., and the previous closing price of 100. Set a new current price to 90. Display the symbol and name of the company, the previous and current prices and price-change percentage. Example of output: Stock symbol: SUMW Stock name: Sun Microsystems Inc. Previous Closing Price: 100.0 Current price: 90.0 Price change: -10.0% Add code to create another Stock object with the stock symbol ORCL, the name Oracle Corporation/ Set the previous closing price to 34.5. Set a new current price to 38.75. Display the symbol and name of the company, the previous and current prices and price-change percentage. Example of output: Stock symbol: ORCL Stock name: Oracle Corporation Previous Closing Price: 34.5 Current Price: 38.75 Price Change: 12.32%

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Create a Java project called StockTask

1. Write an object class named Stock that contains:

  • A private string data field named symbol for the stock's symbol.
  • A private string data field named name for the stock's name.
  • A private double data field named previousClosingPrice that stores the stock price for the previous day.
  • A private double data field named currentPrice that stores the stock price for the current time. 
  • A constructor that creates a stock with the specified symbol and name.
  • Accessor methods (get-methods) for the data fields.
  • Mutator method (set-methods) for the data fields. 
  • A method named getChangePercent() that returns the percentage changed from previousClosingPrice to currentPrice.
    • Formula: perc_change = (current price - previous closing price) / previous closing price x 100

2. Write a test class named testStock that creates a Stock object with the stock symbol SUNW, the name Sun Microsystems Inc., and the previous closing price of 100.

Set a new current price to 90.  Display the symbol and name of the company, the previous and current prices and price-change percentage. 

Example of output:

Stock symbol: SUMW

Stock name: Sun Microsystems Inc.

Previous Closing Price: 100.0

Current price: 90.0

Price change: -10.0%

Add code to create another Stock object with the stock symbol ORCL, the name Oracle Corporation/

  • Set the previous closing price to 34.5.
  • Set a new current price to 38.75.  Display the symbol and name of the company, the previous and current prices and price-change percentage. 
  • Example of output:

Stock symbol: ORCL

Stock name: Oracle Corporation

Previous Closing Price: 34.5

Current Price: 38.75

Price Change: 12.32%

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 8 images

Blurred answer
Knowledge Booster
void method
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education