Questions
Assume that you are hired in a marketing manager position at a hotel. You are supposed...

Assume that you are hired in a marketing manager position at a hotel. You are supposed to develop a marketing positioning statement and communicate it with all employees so that they can understand organizational marketing directions. There is no precedented work about a marketing strategy, and sooner or later, you need to start with the work. How can you lead to develop the positioning statement? Explain the process of developing the statement from the beginning (NOT about just making the statement).

In: Operations Management

2a. The two space curves and r1(t) = <?1 + 5t, 3 − t^2, 2 +...


2a. The two space curves

and

r1(t) = <?1 + 5t, 3 − t^2, 2 + t − t^3> and? r2(s)=< ?3s−2s^2,s+s^3 +s^4,s−s^2 +2s^3>?

both pass through the point P(1,3,2). Find the values of t and s at which the curves pass through this point.

2b. Find the tangent vectors to each curve at the point P (1, 3, 2).

2c. Suppose S is a surface which contains the point P (1, 3, 2), and both r1(t) and r2(s) lie in S. We don’t have an equation for S, but we can still find the equation of the tangent plane to surface S at the point P (1, 3, 2). Use your answers to 2b. to do so:

Find the equation of the tangent plane to S at point P. (Hint: the vectors from 2b. lie in the tangent plane.)

3.

3. The above contour map shows the island of Hawai’i. Suppose that the height above sea level of the island is given by a function z = f(x,y) where (0,0) is at the peak of Mauna Loa and x, y, and z are measured in feet.

3a. If (a, b) is at the point P , determine if each of the following is positive, negative or zero (approximately). Briefly explain your answers. (i) fx (a, b) (ii) fy (a, b) (iii) fxy (a, b) (iv) fxx (a, b)

3b. If Mauna Loa is at a height of 13, 678 feet above sea level, write down the equation of the tangent plane at the point (0, 0).

3c. Approximate the equation of the tangent plane at the point P . Be sure to convert kilometers to feet in your computations!

In: Advanced Math

Develop a test strategy for testing the entire application chosen in unit 3 for analysis and...

Develop a test strategy for testing the entire application chosen in unit 3 for analysis and design. Keep in mind that testing that involves users should minimize their time commitment while obtaining essential information from their involvement. Specifically define roles, responsibilities, timing, and test strategy for each level of testing.

In: Computer Science

Consider a simple application-level protocol built on top of UDP that allows a client to retrieve...

  • Consider a simple application-level protocol built on top of UDP that allows a client to retrieve a file from a remote server residing at a well-known address. The client first sends a request with a file name, and the server responds with a sequence of data packets containing different parts of the requested file. To ensure reliability and sequenced delivery, client and server use a stop-and-wait protocol. Ignoring the obvious performance issue, do you see a problem with this protocol? Think carefully about the possibility of processes crashing.

In: Computer Science

Oscar Clemente is the manager of Forbes Division of Pitt, Inc., a manufacturer of biotech products....

Oscar Clemente is the manager of Forbes Division of Pitt, Inc., a manufacturer of biotech products. Forbes Division, which has $4 million in assets, manufactures a special testing device. At the beginning of the current year, Forbes invested $5 million in automated equipment for test machine assembly. The division’s expected income statement at the beginning of the year was as follows:

Sales revenue $ 16,000,000
Operating costs
Variable 2,000,000
Fixed (all cash) 7,500,000
Depreciation
New equipment 1,500,000
Other 1,250,000
Division operating profit $ 3,750,000

A sales representative from LSI Machine Company approached Oscar in October. LSI has for $6.5 million a new assembly machine that offers significant improvements over the equipment Oscar bought at the beginning of the year. The new equipment would expand division output by 10 percent while reducing cash fixed costs by 5 percent. It would be depreciated for accounting purposes over a three-year life. Depreciation would be net of the $500,000 salvage value of the new machine. The new equipment meets Pitt’s 12 percent cost of capital criterion. If Oscar purchases the new machine, it must be installed prior to the end of the year. For practical purposes, though, Oscar can ignore depreciation on the new machine because it will not go into operation until the start of the next year.

The old machine, which has no salvage value, must be disposed of to make room for the new machine.

Pitt has a performance evaluation and bonus plan based on residual income. Pitt uses a cost of capital of 12 percent in computing residual income. Income includes any losses on disposal of equipment. Investment is computed based on the end-of-year balance of assets, net book value. Ignore taxes.

Required:

a. What is Forbes Division’s residual income if Oscar does not acquire the new machine? (Enter your answer in thousands of dollars. Negative amount should be indicated by a minus sign.)

b. What is Forbes Division’s residual income this year if Oscar acquires the new machine? (Enter your answer in thousands of dollars. Negative amount should be indicated by a minus sign.)

c. If Oscar acquires the new machine and operates it according to specifications, what residual income is expected for next year? (Enter your answer in thousands of dollars. Negative amount should be indicated by a minus sign.)

In: Accounting

Write a linear-search Java method to test if a String array is already sorted alphabetically. The...

Write a linear-search Java method to test if a String array is already sorted alphabetically. The prototype should be static boolean ifsorted(String [] s)

{

}

In: Computer Science

y"-y'-2y=54xe^2x

y"-y'-2y=54xe^2x

In: Advanced Math

nursing care plan for urinary elimination

nursing care plan for urinary elimination

In: Nursing

Pagemaster Enterprises is considering a change from its current capital structure. The company currently has an...

Pagemaster Enterprises is considering a change from its current capital structure. The company currently has an all-equity capital structure and is considering a capital structure with 25 percent debt. There are currently 8,100 shares outstanding at a price per share of $50. EBIT is expected to remain constant at $44,000. The interest rate on new debt is 7 percent and there are no taxes.

a. Rebecca owns $17,000 worth of stock in the company. If the firm has a 100 percent payout, what is her cash flow? (Do not round intermediate calculations and round your answer to 2 decimal places, e.g., 32.16.)
b. What would her cash flow be under the new capital structure assuming that she keeps all of her shares? (Do not round intermediate calculations and round your answer to 2 decimal places, e.g., 32.16.)
c. Suppose the company does convert to the new capital structure. Show how Rebecca can maintain her current cash flow.

In: Finance

Java programming extra credit. The following program will be used to test your knowledge on Implementing...

Java programming extra credit.

The following program will be used to test your knowledge on Implementing with tester classes. Included is the Details class. Your assignment is to create a class named DetailsTester using info from the two classes(Procedure class is only included to know the details of the procedure, which includes desc, date, and cost) Patient class is included as well.That will properly implement the class.

package doctorOffice;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.util.ArrayList;
public class Patient extends Person
{
//Instance variables
private LocalDate birthDate;
private Details details;
//Default Constructor
public Patient() { }
//Constructor
public Patient(String name,
LocalDate birthDate,
int ssn)
{
this.name = name;
this.birthDate = birthDate;
this.ssn = ssn;
}
//Getters--------------------------------------
public Details getDetails()
{
return details;
}
public LocalDate getBirthDate()
{
return birthDate;
}
}

package doctorOffice;

import java.util.ArrayList;
import java.time.LocalDate;

public class Details
{
//Instance variables
private Patient patient;
private double height;
private double weight;
private ArrayList procedures = new ArrayList();
private LocalDate lastVisit;

Details(Patient patient,
double height,
double weight)
{
this.patient = patient;
this.height = height;
this.weight = weight;
}

//Getters--------------------------------------
public Patient getPatient()
{
return patient;
}

public double getHeight()
{
return height;
}

public double getWeight()
{
return weight;
}

public ArrayList getProcedures()
{
return procedures;
}

public LocalDate getLastVisit()
{
return lastVisit;
}

//Setters--------------------------------------
public void setHeight(double height)
{
this.height = height;
}

public void setWeight(double weight)
{
this.weight = weight;
}

public void setLastVisit(LocalDate lastVisit)
{
this.lastVisit = lastVisit;
}

//Methods--------------------------------------
public boolean addProcedure(Procedure toAdd)
{
//LOGIC HERE
return true;
}
}

*******

package doctorOffice;

import java.time.LocalDate;
import java.time.format.DateTimeFormatter;

//Procedure class holds information about any procedures performed on the patients
public class Procedure
{
   private String desc;
   private double cost;
   private LocalDate date;
  
   public Procedure(String desc, double cost, String date) throws Exception
   {
       this.desc = desc;
       this.cost = cost;
       this.date = LocalDate.parse(date, DateTimeFormatter.ofPattern("MM/dd/yyyy"));
   }
  
   //getters
   public String getDesc()
   {
       return this.desc;
   }
  
   public double getCost()
   {
       return this.cost;
   }
  
   public LocalDate getDate()
   {
       return this.date;
   }

   //toString override
   public String toString()
   {
       String output = "Description: " + desc;
       output += "\n\nCost: " + cost;
       output += "\n\nDate: " + date.toString();
       return output;
   }
}

In: Computer Science

Assuming standard 1500 byte Ethernet max payloads: how many IPv4 fragments will be needed to transfer...

  1. Assuming standard 1500 byte Ethernet max payloads: how many IPv4 fragments will be needed to transfer 2000 bytes of user data with a single UDP send? And, how do the 2000 bytes get split over the frags?
  2. Despite its conceptual elegance, RPC (Remote Procedure Call) has a few problems. Discuss any 3 of those in brief.
  3. Why is timestamping needed in real-time applications? This is in the context of Real-time Transport Protocol (RTP).
  4. Why does UDP exist? Would it not have been enough to just let user processes send raw IP packets?
  5. Explain how QUIC eliminates a couple of RTTs usually needed at the start of a secure web connection.

In: Computer Science

How can social media impact the buying choices of shoppers? please list and explain this! thanks...

How can social media impact the buying choices of shoppers? please list and explain this! thanks in advance

In: Operations Management

The following table contains prices and dividends for a stock. All prices are after the dividend...

The following table contains prices and dividends for a stock. All prices are after the dividend has been paid. If you bought the stock on January 1 and sold it on December​ 31, what is your realized​ return?  ​Hint: Make sure to round all intermediate calculations to at least five decimal places.

Price

Dividend

Copy to Clipboard +
Open in Excel +

Jan 1

10.07

Mar 31

11.07

0.19

Jun 30

10.57

0.19

Sep 30

11.17

0.19

Dec 31

11.07

0.19

Your realized return is? (Round to one decimal​ place.)

In: Finance

A curve of radius 68m is banked for a design speed of 80km/h . f the...

A curve of radius 68m is banked for a design speed of 80km/h .

f the coefficient of static friction is 0.36 (wet pavement), at what range of speeds can a car safely make the curve? [Hint: Consider the direction of the friction force when the car goes too slow or too fast.]

Express your answers using two significant figures separated by a comma. And express to Vmin, Vmax with km/h.

In: Physics

The advantages and disadvantages of cultural diversity for the Multi National Company and its level of...

The advantages and disadvantages of cultural diversity for the Multi National Company and its level of importance with examples and references.

In: Operations Management