In a short paper describe the four different types of analytics needed to create insights and make decisions from big data.
In: Operations Management
*//
1- Add JavaDoc to This classes
2- Mak a UML
*/
import java.util.*;
public class Display
{
public static void main(String[] args)
{
altEnerCar car1 = new altEnerCar(20000, 2001, 20000);
altEnerCar car2 = new HydrogenCar(0, 2012, 50000, 100, false);
altEnerCar car3 = new ElectricCar(0, 2014, 30000, 10, 50);
altEnerCar car4 = new NaturalGasCar(0, 2000, 60000, 5, 20);
altEnerCar car5 = new PropaneCar(0, 2011, 45000, 10, true);
ArrayList<altEnerCar> cars = new ArrayList<altEnerCar>();
cars.add(car1);
cars.add(car2);
cars.add(car3);
cars.add(car4);
cars.add(car5);
Collections.sort(cars);
System.out.println(cars);
}
}
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author charl
*/
public class ElectricCar extends NoEmissionsCar
{
private double batterycharge;
public ElectricCar()
{
this.batterycharge = 200;
}
public ElectricCar(double miles, int yearmade, double price, double fuelcost, double batterycharge)
{
super(miles, yearmade, price, fuelcost);
this.batterycharge = batterycharge;
}
@Override
public void setFuelCost(double fuelcost)
{
this.fuelcost = fuelcost;
}
@Override
public double getFuelCost()
{
return this.fuelcost;
}
public void setBatteryCharge(double batterycharge)
{
this.batterycharge = batterycharge;
}
public double getBatteryCharge()
{
return this.batterycharge;
}
@Override
public String toString()
{
return "\tMiles: "+miles+"\tMake year: "+yearmade+"\tPrice: "+price+"\tFuel cost: "+fuelcost+"\tBatery Charge: "+batterycharge;
}
}
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author charl
*/
public abstract class EmissionsCar extends altEnerCar
{
protected double emissions;
public EmissionsCar()
{
this.emissions = 60;
}
public EmissionsCar(double miles, int yearmade, double price, double emissions)
{
super(miles, yearmade, price);
this.emissions = emissions;
}
public abstract void setEmissions(double emissions);
public abstract double getEmissions();
}
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author charl
*/
public class HydrogenCar extends NoEmissionsCar
{
private boolean infastructure;
public HydrogenCar()
{
this.infastructure = false;
}
public HydrogenCar(double miles, int yearmade, double price, double fuelcost, boolean infastructure)
{
super(miles, yearmade, price, fuelcost);
this.infastructure = infastructure;
}
@Override
public void setFuelCost(double fuelcost)
{
this.fuelcost = fuelcost;
}
@Override
public double getFuelCost()
{
return this.fuelcost;
}
public void setInfastructure(boolean infastructure)
{
this.infastructure = infastructure;
}
public boolean getInfastructure(boolean infastructure)
{
return this.infastructure;
}
@Override
public String toString()
{
return "\tMiles: "+miles+"\tMake Year: "+yearmade+"\tPrice: "+price+"\tFuel Cost: "+fuelcost+"\tInfrastructure: "+infastructure;
}
}
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author charl
*/
public class NaturalGasCar extends EmissionsCar
{
private double methaneemissions;
public NaturalGasCar()
{
this.methaneemissions = 15;
}
public NaturalGasCar(double miles, int yearmade, double price, double emissions, double methaneemissions)
{
super(miles, yearmade, price, emissions);
this.methaneemissions = methaneemissions;
}
@Override
public void setEmissions(double emissions)
{
this.emissions = emissions;
}
@Override
public double getEmissions()
{
return this.emissions;
}
public void setMethaneEmissions(double methaneemissions)
{
this.methaneemissions = methaneemissions;
}
public double getMethaneEmissions()
{
return this.methaneemissions;
}
@Override
public String toString()
{
return "\tMiles: "+miles+"\tMake Year: "+yearmade+"\tPrice: "+price+"\tEmission: "+emissions+"\tMethane Emission: "+methaneemissions;
}
}
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author charl
*/
public abstract class NoEmissionsCar extends altEnerCar
{
protected double fuelcost;
public NoEmissionsCar()
{
this.fuelcost = 30;
}
public NoEmissionsCar(double miles, int yearmade, double price, double fuelcost)
{
super(miles, yearmade, price);
this.fuelcost = fuelcost;
}
public abstract void setFuelCost(double fuelcost);
public abstract double getFuelCost();
}
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author charl
*/
public class PropaneCar extends EmissionsCar
{
private boolean infastructure;
public PropaneCar()
{
this.infastructure = true;
}
public PropaneCar(double miles, int yearmade, double price, double emissions, boolean infastructure)
{
super(miles, yearmade, price, emissions);
this.infastructure = infastructure;
}
@Override
public void setEmissions(double emissions)
{
this.emissions = emissions;
}
@Override
public double getEmissions()
{
return this.emissions;
}
public void setMethaneEmissions(boolean infastructure)
{
this.infastructure = infastructure;
}
public boolean getMethaneEmissions()
{
return this.infastructure;
}
@Override
public String toString()
{
return "\tMiles: "+miles+"\tMake Year: "+yearmade+"\tPrice: "+price+"\tEmissions: "+emissions+"\t Infrastructure: "+infastructure;
}
}
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author charl
*/
public class altEnerCar implements Comparable<altEnerCar>
{
protected double miles;
protected int yearmade;
protected double price;
public altEnerCar()
{
this.miles = 0;
this.yearmade = 2019;
this.price = 50000;
}
public altEnerCar(double miles, int yearmade, double price)
{
this.miles = miles;
this.yearmade = yearmade;
this.price = price;
}
public void setMiles(double miles)
{
this.miles = miles;
}
public void setYearMade(int yearmade)
{
this.yearmade = yearmade;
}
public void setPrice(double price)
{
this.price = price;
}
public double getMiles()
{
return this.miles;
}
public int getYearMade(int yearmade)
{
return this.yearmade;
}
public double getPrice()
{
return this.price;
}
public String toString()
{
return "\nmiles: "+miles+"\nyear made: "+yearmade+"\nprice: "+price;
}
public int compareTo(altEnerCar otherAECar)
{
return -1*(Double.valueOf(otherAECar.getPrice()).compareTo(this.price));
}
}
In: Computer Science
(Proforma balance sheet construction)Use the following industry-average ratios to construct a pro forma balance sheet for Karen's Beauty Products, Inc
Total asset turnover 1.5 times
Average collection period (assume 365-day year) 16 days
Fixed asset turnover 6 times
Inventory turnover (based on cost of goods sold) 2 times
Current ratio 1.8 times
Sales (all on credit) 3,000,000
Cost of goods sold 75% of sales
Debt ratio 50%
Fill in the assets section of the pro forma balance sheet. (Round all items to the nearest dollar.)
|
Cash |
$nothing |
|
|
Accounts receivable |
nothing |
|
|
Inventories |
nothing |
|
|
Net fixed assets |
nothing |
|
|
Total assets |
$nothing |
In: Finance
1. A depository institution that has the following assets with weights as indicated:
$875 million in commercial loans with one to three years maturity (100%);
$105 million in long term treasuries (0%);
$635 million loans secured by 1-4 family first mortgages (35%);
$12 million cash items in collection (20%);
$200 million in cash and reserves (0%);
$500 million in mortgage backed securities guaranteed by US government agencies (20%);
$285 million in multifamily mortgages (50%);
$250 million in consumer loans (100%);
$65 million in state and local governments bonds (20%); and
$25 million in loans that are 90 days or more past due (150%).
b. How much Tier 1 capital must the depository institution have to be considered adequately capitalized?
In: Finance
Effective credit management involves establishing credit standards for extending credit to customers, determining the company’s terms of credit, and setting up procedures for invoicing and collecting past-due accounts.
The following statement refers to a credit management policy. Select the best term to complete the sentence.
The conditions of the credit sale, including cash discounts and due dates, are indicated by the company’s .
Consider the case of Newtown Co.:
Newtown Co. has a very attractive credit policy, and none of its customers pay in cash when the firm makes a sale. Newtown Co. sells to its customers on credit terms of 2/10, net 30.
If a customer bought $100,000 worth of goods and paid the firm cash eight days after the sale, how much cash would Newtown Co. get from the customer?
$90,000
$98,000
$85,000
$105,000
If the customer paid off the account after 15 days, Newtown Co. would receive .
Approximately 30% of Newtown Co.’s customers take advantage of the discount and pay on the 10th day. The remaining 70% take an average of 35 days to pay off their accounts. What is Newtown Co.’s days sales outstanding (DSO), or the average collection period?
27.5 days
26.1 days
24.8 days
28.9 days
In: Finance
1. What are the main processes in project quality management?
2. Why is quality management becoming more important? what does it mean to use lean in quality assurance?
3. What are benchmarks? How can they assist in performing quality assurance?
4. Describe Capability Maturity Model Integration (CMMI)?
In: Operations Management
In: Finance
Create a JavaScript program of objects that asks the user how old they are in years. Then ask the user if they would like to know how old they are in months, days, hours, or seconds. Use if/else conditional statements to display their approximate age in the selected timeframe. Perform all calculations using an AgeConverter class that accepts the age in years during initialization and has separate properties and methods to calculate and return the age in months, days, hours, and seconds. Include data validation in the class and error handling in the main program by using Node Js as IDE.
In: Computer Science
Are there business advantages to using sustainable or green suppliers? If so, what are they? If not, do you think a traditional return on investment analysis captures all possible benefits of going green?
In: Finance
What is the role of physical software media in documentation? What are all the information must be stored on a media label? i need a unique answer please don't copy from other answers
In: Computer Science
In: Computer Science
Look up all of the books from the list below and write a 2 sentence description about each one.
Why do you think each book has been important throughout history?
The Meaning of Relativity by by Albert Einstein
On the Origin of Species by Charles Darwin
Geographia by Ptolemy
Silent Spring by Rachel Carson
The Complete Works of William Shakespeare By William Shakespeare
The Canterbury Tales by Geoffrey Chaucer
Uncle Tom's Cabin by Harriett Beecher Stow
In: Psychology
Lee Financial Services pays employees monthly. Payroll
information is listed below for January 2018, the first month of
Lee's fiscal year. Assume that none of the employees exceeded any
relevant wage base.
| Salaries | $ | 420,000 | |
| Federal income taxes to be withheld | 84,000 | ||
| Federal unemployment tax rate | 0.60 | % | |
| State unemployment tax rate (after FUTA deduction) | 5.40 | % | |
| Social security tax rate | 6.20 | % | |
| Medicare tax rate | 1.45 | % | |
Required:
Calculate the income and payroll taxes for the January 2018 pay
period. Prepare the appropriate journal entries to record salaries
and wages expense (not paid) and payroll tax expense for the
January 2018 pay period.
In: Accounting
A manager is attempting to put together an aggregate plan for
the coming nine months. She has obtained a forecast of expected
demand for the planning horizon. The plan must deal with highly
seasonal demand; demand is relatively high in periods 3 and 4 and
again in period 8, as can be seen from the following
forecasts:
| Period | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | Total |
| Forecast | 190 | 230 | 260 | 280 | 210 | 170 | 160 | 260 | 180 | 1,940 |
The department now has 20 full-time employees, each of whom can
produce 10 units of output per period at a cost of $6 per unit.
Inventory carrying cost is $5 per unit per period, and backlog cost
is $10 per unit per period.
Prepare an aggregate plan that uses overtime ($9 per unit, maximum
output 25 units per period) and inventory variation. The primary
objective in this problem is to minimize backlogs to the extent
possible without having any inventory remaining at the end of
Period 9. The ending inventory in period 9 should be zero, and the
limit on backlogs is 60 units per period. Note that Total output =
Total regular output + Overtime quantity. Compute the total cost of
your plan. Assume 20 full-time workers. (Omit the "$" sign
in your response.)
Total cost
$
In: Operations Management
Now let's have a close look over the three most important components of the pension expense. The treatment of expected and actual return on plan assets, particularly when the actual return is greater than the expected, the amortization of prior service cost and the unexpected gain/ loss. Discuss the accounting treatment of these items with suitable examples.
In: Accounting