Entries by Student

write my assignment 18803

The following must be submitted by the end of the day (11:59pm local time) on Saturday. No credit is available for submissions not made by this time. The system will not accept submissions made after this time. This is not a group assignment, so no collaboration or discussion is allowed; it must be worked on individually. Submit your responses to all three questions in a single document. There should be a single title page for the document. However, each question should have its own separate references page. The total length of the document should be between 13 and 16 pages. Do not include the wording of the questions in your paper.

Question 1: In 750-1000 words, identify and explain the five steps of forecasting, and then come up with an original example taken from your own professional experiences to illustrate these steps. Your response must be original. You must incorporate at least three reliable sources, both as references and corresponding in-text citations. APA format is expected.

Question 2: In 750-1000 words, explain qualitative and quantitative forecasting, and then come up with an original example of each taken from your own professional experiences to illustrate these two forecasting types. Your response must be original. You must incorporate at least three reliable sources, both as references and corresponding in-text citations. APA format is expected.

Question 3: In 750-1000 words, identify and explain the types of data patterns, and then come up with an original example of each (strive to make it based on your own professional experiences) to illustrate each data pattern type. Your response must be original. You must incorporate at least three reliable sources, both as references and corresponding in-text citations. APA format is expected.

 

"Not answered?"


Get the Answer

write my assignment 3261

A distant cousin approaches you at your family reunion and says, “Great to see you! I heard you are a nurse. My friend is having success with the (insert selection from list below) and I am wondering what you think about it? Should I give it a try?”

Choose one of the following to consider in your response:

  • Paleo Diet
  • Anti-inflammatory Diet
  • Mediterranean Diet
  • Vegan Diet
  • Ketogenic Diet

In your discussion post, please include the following information:

  1. Briefly describe the diet you have selected to consider.
  2. Share how you would respond to your cousin. Please include questions you would ask, and your advice/recommendations.

 

"Not answered?"


Get the Answer

write my assignment 26252

Below are the instructions for assignment and additional instructor notes for the code.

***Assignment Instructions****

Use the “starter” code to make changes to the Java™ program that prompts the user for input, accepts user input, and produces both console and file output.

Add comments where code was added.

***Instructor Notes**

This assignment is a little vague. I would ask the user for the name of file to write to from the console using the Scanner class. Write to this file and to the console, the string of the count, 0 to 9 in a for loop.

***Code Files****

StarterDemo (based on instructor feedback, I don’t believe any other work needs to be done w/ StarterDemo Class)

 */

/**

 * Starter class and call the needed method.

 * @author

 */

public class StarterDemo {

   public static void main(String[] args) {

       Starter starter = new Starter();

       starter.getInput();

   }

}

————————

Starter File

import java.io.*;

import java.util.Scanner;

/**

 * The Starter class accepts user input and outputs it to a file and the

 * console.

 *

 * @author

 */

public class Starter {

   private Scanner input;

   private double data;

   private String fileName;

   private String line;

   private FileReader fileReader;

   private PrintStream fileStdout;

   /**

    * Prompts and accepts user input and output to console, numbers 0 through

    * 9,

    *

    */

   public void getInput() {

       System.out.println(“Enter the name of the .txt file to write to and from.”);

       input = new Scanner(System.in);

       fileName = “input.txt”;

       line = null;

       try {

           fileReader = new FileReader(fileName);

           try {

               // coding block to output data to file

               fileStdout = new PrintStream(new FileOutputStream(“data.txt”));

               System.out.println(“==============”);

               int i = 0;

               fileStdout.println(“” + i);

           } catch (Exception e) {

           }

       } catch (Exception ex) {

       }

   }

}

 

"Not answered?"


Get the Answer

write my assignment 18384

125,000

After the initial 5 years, SDUX believes the market will continue in perpetuity: however, given that the segment will reach maturity, it would very likely be a zero growth business. The company uses NPV for capital budgeting decisions on new products and investments.

As of today, SDUX currently has $8 billion in bonds (debt) outstanding. Their stock closed at $40/share and there are 300 million shares outstanding. The beta of SDUX stock (equity) is approximately 0.8. SDUX is an “A-rated’ company credit-wise, and continues to borrow at the current rate of 3.1% like most companies in that rating category. They face a marginal tax rate of 35%. Recent market data shows that 10-year US treasuries yield 1.8% and the expected market risk premium going forward is 6%.

Additionally, in considering the new investment, SDUX is likely going to raise new capital which it will finance through an equity offering. Based on the recommendation by their investment bank, SDUX considers establishing a new capital structure that will be 75% equity if they decide to go forward with the new business.

SDUX has also identified a pure play company, G-Latte-O Corp, that only produces and sells high end coffee-flavored gelato products. G-Latte-O has a capital structure that is 15% debt – 85% equity and has an equity beta of 1.4. They have the same marginal tax rate as SDUX.

a) Calculate the current WACC for SDUX Corporation and determine whether the company should proceed with the investment at that discount rate.

b) Calculate the appropriate risk-adjusted discount rate that SDUX should use to evaluate the new investment, and then determine whether the company should proceed with the investment using this risk-adjusted rate.

 

"Not answered?"


Get the Answer