ComputerScienceExpert

(11)

$18/per page/

About ComputerScienceExpert

Levels Tought:
Elementary,Middle School,High School,College,University,PHD

Expertise:
Applied Sciences,Calculus See all
Applied Sciences,Calculus,Chemistry,Computer Science,Environmental science,Information Systems,Science Hide all
Teaching Since: Apr 2017
Last Sign in: 103 Weeks Ago, 3 Days Ago
Questions Answered: 4870
Tutorials Posted: 4863

Education

  • MBA IT, Mater in Science and Technology
    Devry
    Jul-1996 - Jul-2000

Experience

  • Professor
    Devry University
    Mar-2010 - Oct-2016

Category > Programming Posted 04 May 2017 My Price 11.00

The computeAverageSales

You have been tasked with creating an application that accepts product data and displays this information. The application also computes average sales and shipping charges. Using appropriate control structures, enhance your product class to include the 2 new methods designed in an earlier task.

The computeAverageSales() method should use sentinel-controlled repetition to allow a user to enter product sales data until the user has indicated that he or she is done. The average of the entered sales data will be computed and returned by the method to be displayed by the application. For example, if the user entered 500.50, 250.50, and 300.30, then the average sales would be computed for these 3 values and returned by the method. The prompting of the sales data is done within the method. If the value of the average sales exceeds $200.00, a message should be displayed to alert the user that the product has produced a significant amount of revenue. The computeAverageSales() method should return type "double."

The computeShippingCharges() method should use sentinel-controlled repetition, to allow a user to enter shipping data until the user has indicated that he or she is done. The total shipping charges will be computed and returned as a double value.

Modify your application to call the computeAverageSales() and computeShippingCharges() methods.

As a result of these modifications, the following requirements should be met:

  1. Your application should use the class you created in the earlier tasks. Your class represents one product that your company sells. Your class should have at least 3 attributes (instance variables). Getters and setters for each instance variable should be provided. Attributes should be appropriately typed and scoped to incorporate data hiding. Appropriate constructors should be implemented by each class and called by the application.
  2. The application should provide a user-friendly interface that allows the user to input data for at least 2 instances of your product class.
  3. Data validation should be incorporated at the time of data entry. At least one error-checking condition must be incorporated to allow the user to reenter a data value that is not valid.
  4. Constructors should be called to create instances of your classes once the user has entered valid data. The valid data should be used appropriately by the constructors.
  5. After product information has been entered and displayed, your application should allow the user to compute average sales and shipping charges. The application should call the computeAverageSales() and computeShippingCharges() methods.
    1. There is no limit to the number of orders placed for each product. Using sentinel-controlled repetition, the computeAverageSales() method should allow a user to enter product sales data until the user has indicated that he or she is done. The average of the entered sales data will be computed and returned by the method to be displayed by the application. For example, if the user entered 500.50, 250.50, and 300.30, then the average sales would be computed for these 3 values and returned by the method. The prompting of the sales data is done within the method. If the value of the average sales exceeds $200.00, a message should be displayed to alert the user that the product has produced a significant amount of revenue.
    2. The computeShippingCharges() method should use sentinel-controlled repetition to allow a user to enter shipping data until the user has indicated that he or she is done. The total shipping charges will be computed and returned as a double value. The application will display the computed shipping charges.

Your code should be well commented. Use the following steps to guide your work:

  • Compile all of your pseudocode from the earlier IPs into a design document. Your design document should have a section that includes the functional requirements and any class diagrams used to describe the system. Include any design requirements imposed by your technical leadership.
  • Use NetBeans IDE (Clickhereif you have not installed) to edit, compile and run your Java code.

 

/**
* ProductCategory Class
*/
public class ProductCategory {
String categoryName;
int productsInStock;
double averagePrice;
/**
* Constructor
*/
public ProductCategory(String cat, int products, double price) {
categoryName = cat;
productsInStock = products;
averagePrice = price;
}
/**
* returns the name of category
* */
public String getCategoryName() {
return categoryName;
}
/**
* returns the products in stock
* */
public int getProductsInStock() {
return productsInStock;
}
/**
* returns the average price
* */
public double getAveragePrice() {
return averagePrice;
}
/**
* sets the name of category
* */
public void setCategoryName(String cat) {
categoryName = cat;
}
/**
* sets products in stock
* */
public void setProductsInStock(int products){
productsInStock = products;
}
/**
* sets average price
* */
public void setAveragePrice(double price){
averagePrice = price;
}
}

import java.util.Scanner;
/**
* ProductCategoryTest class
* */
public class ProductCategoryTest {
public static void main(String args) {
Scanner input = new Scanner(System.in);
String categoryName;
int productsInStock;
double averagePrice;
// prompt and read category name
System.out.print("Enter the name of category: ");
categoryName = input.nextLine();
// prompt and read products in stock
System.out.print("Enter the products in the category: ");
productsInStock = input.nextInt();
// prompt and read average price
System.out.print("Enter the average price of products: ");
averagePrice = input.nextDouble();
// create ProductCategory object
ProductCategory objProductCategory = new
ProductCategory(categoryName, productsInStock, averagePrice);
// display the details using getters of the class
System.out.println("\nCategory Name: " +
objProductCategory.getCategoryName());
System.out.println("Products in Stock: " +
objProductCategory.getProductsInStock());
System.out.println("Average price of products: " +
objProductCategory.getAveragePrice());
}
}

Answers

(11)
Status NEW Posted 04 May 2017 07:05 AM My Price 11.00

-----------

Attachments

file 1493882037-Solutions file 2.docx preview (51 words )
H-----------ell-----------o S-----------ir/-----------Mad-----------am ----------- Th-----------ank----------- yo-----------u f-----------or -----------you-----------r i-----------nte-----------res-----------t a-----------nd -----------buy-----------ing----------- my----------- po-----------ste-----------d s-----------olu-----------tio-----------n. -----------Ple-----------ase----------- pi-----------ng -----------me -----------on -----------cha-----------t I----------- am----------- on-----------lin-----------e o-----------r i-----------nbo-----------x m-----------e a----------- me-----------ssa-----------ge -----------I w-----------ill----------- be----------- qu-----------ick-----------ly -----------onl-----------ine----------- an-----------d g-----------ive----------- yo-----------u e-----------xac-----------t f-----------ile----------- an-----------d t-----------he -----------sam-----------e f-----------ile----------- is----------- al-----------so -----------sen-----------t t-----------o y-----------our----------- em-----------ail----------- th-----------at -----------is -----------reg-----------ist-----------ere-----------d o-----------n -----------THI-----------S W-----------EBS-----------ITE-----------. ----------- Th-----------ank----------- yo-----------u -----------
Not Rated(0)