marketing paper

Marketing Midterm Paper

Identify a product or service that has been successful. 

Company History

Product History

Features, Niche , Benefits

Competition

What is their marketing plan?

Target market, segmentation, distribution, pricing strategies, promotional tactics,

Advertising tactics, ( print, radio, magazines, newspapers, social media..etc..etc..)

Sales history..

International ??

Product innovation..

Your analysis of what they have been doing in terms of marketing strategy? 

Recommendations moving forward??

6 plus pages , double spaced, 1 inch margins, cover page , cites sources .

Utilize marketing terms, interpret your data.

  

Distinguishes-the-CEO-s-leadership-from-her-or-his-management-style-management-homework-help

Review Fortune Magazine’s latest list of Fortune 500 CEOs. At this website http://fortune.com/fortune500/ (When you open the company profiles, you will see the CEOs listed.) Select an individual that best suits your current (Teacher) or future (School Director) professional employment industry.

Research your chosen CEO on the basis of leadership and not biography. Upon completion of your findings, write a 125- to 250-word composition that profiles this outstanding individual. Within your report, make sure you include information that:

  • Distinguishes the CEO’s leadership from her or his management style.
  • Explains by example whether the CEO fits the definition of a transformational leader

follow instructions above please

Agriculture-articles-

Review the article and video respond to it on what you think the citrus market will do from the hurricane in Florida recently. 2-4 paragraphs. article#5 http://www.thepacker.com/news/hurricane-irma-gouges-early-vegetables-citrus

Link

Basuc-Java-programming

Topic

Primitive Arrays

Description

Write a program that will compute a number of statistics for a set of data provided by the user. The data will be made up of decimal numbers. After inputting the data, the program will compute and display the following statistics relating to the data.

  • Min Value
  • Max Value
  • Mean Value
  • Median Value

Implementation

Do the above assignment by creating two classes: Statistics and TestStatistics.

The class Statistics will be used as a blue print for a Statistics object.

It will keep a set of data and will provide methods to compute statistics relating to the data. The data will be provided to the Statistics object in an array during object construction.

The class TestStatistics will be used to hold the method main. The method main will be used to input the data, create the Statistics object, compute statistics by calling Statistics object methods and display the values received.

Class Statistics

The class Statistics will provide the following:

  • A private array variable data for holding user data.
  • A private array variable sdata for holding a sorted copy of the above data.
  • A constructor to initialize the array data.
  • A method getOrigData for returning a copy of the array data.
  • A method getSortedData for returning a copy of the original array but now sorted.
  • A method findMin for computing min
  • A method findMax for computing max
  • A method findMean for computing mean (or average)
  • A method findMedian for computing median

Class TestStatistics

The class TestStatistics will provide the method main which will do the following:

  • Prompt the user for the number of total items in the data.
  • Create an array of that size.
  • Input data items from the user and store them in the array.
  • Create an object of the class Statistics and pass it the data array.
  • Call a Statistics object method to obtain the original data array.
  • Call a Statistics object method to obtain the data array but now sorted in ascending order.
  • Call Statistics object methods for calculating the min, max, mean and median values.
  • Display the original data, data sorted in ascending order, min, max, mean and median values.

Testing

Test Run:

Input

(User input is shown in bold).

Enter the Number Of Data Values: 12

Enter Data Value: 7.2

Enter Data Value: 7.6

Enter Data Value: 5.1

Enter Data Value: 4.2

Enter Data Value: 2.8

Enter Data Value: 0.9

Enter Data Value: 0.8

Enter Data Value: 0.0

Enter Data Value: 0.4

Enter Data Value: 1.6

Enter Data Value: 3.2

Enter Data Value: 6.4

Output

Original Data:

7.2 7.6 5.1 4.2 2.8 0.9 0.8 0.0 0.4 1.6 3.2 6.4

Sorted Data:

0.0 0.4 0.8 0.9 1.6 2.8 3.2 4.2 5.1 6.4 7.2 7.6

Min Value: 0.0

Max Value: 7.6

Mean: 3.35

Median: 3.0

Discussion

Mean

Mean refers to the average value of the data.

Median

Median is the middle number. It has as many numbers above it as below it.

For example for odd count data: 2, 4, 6, 8 and 10, the number 6 is median. It has two numbers lower than it and two number higher than it.

For even count data: 2, 4, 6, 7, 8 and10, there are two medians: the number 6 and 7. The median is the average of the two medians. So the median for this data is 6.5.

Sample Code

Calculating Median

//sample code below computes the median

//The code below assumes that sdata is an array that contains sorted data.

public double findMedian ( )

{

//Declare variables

int index, indexHi, indexLo;

double median;

//Determine if the length is odd or even.

if ( (sdata.length %2) != 0 )

{

index = sdata.length / 2;

median = sdata [index];

}

else

{

indexHi = sdata.length / 2;

indexLo = indexHi – 1;

median = (sdata[indexLo] + sdata[indexHi] ) / 2;

}

return median;

}

Sorting

//sample code below sorts an array data.

//Using code below, you can sort an array of int or double.

import java.util.*;

Arrays.sort (data);

Copying an Array

You can copy an array, say source of type double or int, starting at its element 0, to another array, say dest of the same type and starting at its element 0 as below: (source.length is the length of the source array).

System.arraycopy (source, 0, dest, 0, source.length );

Receiving an Array

Whenever you receive an array as a parameter, you are receiving a copy of a reference to it. If you want to save the contents of this array array, it’s good idea to create another array and copy the contents of the array received into that array.

Also, the min, the max and median values of data contained in an array can be found easily by sorting the array.

Below, the constructor Statistics receives an array d and copies its contents into two separate instant arrays data, sdata. It then sorts the array sdata. The array sdata can be later used for finding min, max and median values.

private double [] data; //instance variable

private double [] sdata; //instance variable

//constructor Statistics

public Statistics (double [ ] d )

{

//create the array data, sdata

data = new double [d.length];

sdata = new double [d.length];

//copy the data from array d into array data and sdata

System.arraycopy (d, 0, data, 0, d.length);

System.arraycopy (d, 0, sdata, 0, d.lenth);

//sort the array sdata

Arrays.sort (sdata ); //To access Arrays, import java.util.*:

}

Returning an Array

When you return an array from a method, only a copy of the reference to the array is returned. Thus on return, the caller of the method will have access to the array returned. So the caller can modify the array. If you don’t want the caller to be able to modify the array being returned, copy the array into another array and return that array.

Below, the method getSortedData ( ) below returns a copy of the array sdata. The array sdata is an instance array containing the sorted data. Its declaration is not shown.

//the method below returns a copy of the instance array sdata containing the sorted data.

public double [ ] getSortedData ( )

{

//create a new array d.

//array sdata is an instance variable not shown.

double [ ] d = new double [ sdata.length ];

//copyt the array sdata into array d

System.arraycopy ( sdata, 0, d, 0, sdata.length );

//return the reference of the array d

retrun d;

}

Receiving an Array Returned

When a method returns an array, it returns a copy of the reference to the array. So the caller should create a array reference variable to receive the array reference returned.

Below, the caller receives an array reference by calling the method getSortedData ( ) shown earlier.

//create an array reference

double [ ] sortedData ;

//Receive an array returned by method getSortedData ( )

sortedData = getSortedData ( );

Displaying Contents Of An Array

Below, the code displays the contents of an array sdata containing numbers. The contents of the original array can also be displayed in the same way.

String out = “Sorted Data:n”;

For (int i=0; i<sdata.length; i++)

{

out = out + sdata [i] + “ “;

}

out = out + “n”;

JoptionPane.showMessageDialog ( null, out );

Operational-Strategies-Presentation

Review Chapter 6 in your text.

Create a 6–8 slide PowerPoint presentation with speaker notes to incorporate the following criteria:

Summarize each of the following five core operational strategies (one strategy for each slide):

  • Preventative patrol
  • Routine incident response
  • Emergency response
  • Criminal investigation
  • Problem solving

Summarize one ancillary operational strategy such as support services.

Explain how law enforcement agencies utilize operational strategies to achieve crime fighting goals.

Include a title slide and a reference slide listing at least two credible resources in APA format including speaker notes.

Assignment Dropbox by the end of Unit 4.

Journeys-in-Narrative-The-Epic-of-Gilgamesh

Using 200-250 words in strict MLA format identify and describe in thoughtful detail either the Approach to the Inmost Cave or the Ordeal stage of the hero’s journey in ONE of the following narratives we have read for the course.

  • The Epic of Gilgamesh
  • Medea by Euripides
  • Beowulf by Anonymous
  • “The Inferno” by Dante Alighieri

NOTE: Select “The Inferno” by Dante Alighieri only if you have read the entire work.

Will be turned into TURNITIN

-Food-and-Metabolism-log-biology-homework-help

see link below for sheet

Track your food intake for at least 2 days and write down EVERYTHING you eat. Complete the Chart with the appropriate nutritional information and then perform the calculations that will indicate the relative proportions of the different macromolecules in the foods you ate. When you have finished and submitted your diet chart and calculations, you can discuss your findings in 30 words.

BSC+1083 Diet and Metabolism online.docx

Article-Macroeconomics-202-

Need help with my Article . Answers of these question writing them in a paragraph. As also I need the sentences and the words in my paragraph not too difficult but clear and easy to read to help understanding. I’VE ATTACHED THE ARTICLE IN A FILE

Q1:

Is Dani Rodrik against free trade?

Q2:

From the essay: “It has long been an unspoken rule of public engagement for economists that they should
champion trade and not dwell too much on the fine print.

Why would economists do that?

Please write one paragraph to answer this question

Please write a short paragraph to answer this question.

thanku

Unit 4 Discussion board

Unit 4 Discussion Board Assignment

In 1908, playwright Israel Zangwill referred to America as a melting pot. Zangwill’s concept of the United States as a country where people of all cultures and nations are free to come and contribute to a common American culture remains a popular concept—even more than a century after its introduction.

More recently, the concept of the American mosaic asserts that American society consist not of melting pot in which people and cultures mix together to form a larger American culture, but as a mosaic in which ethnic groups come to the United States and coexist with other groups but maintain significant cultural and social distinctions among themselves. Post a discussion that explores these themes by demonstrating how various cultures and ethnicities have contributed to modern American history and culture.

Use the following outline to format your response:

Paragraph 1

  • Select 1 ethnic group.
  • Explain a specific contribution that this group made to American society or culture.

Paragraph 2

  • Evaluate the concepts of the melting pot and the American mosaic.
  • Which concept more accurately reflects the experiences of the ethnic group you chose? Support your assertion.

Respond to at least 2 or more of your classmates’ Discussion Board postings. Be sure to respond to your classmates’ postings with substantive and respectful responses.

Utilize proper grammar and university-level writing skills. Be sure to use correct APA citation format when citing sources.

Financial-Statement-Analysis-and-Decision-Making-Activity-

Resources: U.S. Securities and Exchange Commission (SEC), websites such as Annual Reports (AnnualReports.com)

Tutorial help on Excel® and Word functions can be found on the Microsoft® Office website. There are also additional tutorials via the web offering support for Office products.

Research the the Coke and Pepsi companies on the Internet and download the Income Statement, Statement of Shareholders’ Equity, Balance Sheet, and Statement of Cash Flows.

Develop a minimum 200 word examination of the financial statements and include the following:

  • Make a 5-year trend analysis for each company, using 2011 as the base year, of:
    • Net sales.
    • Net income. Discuss the significance of the trend results.
  • Compute for 2015 and 2014 the:
    • Debt to assets ratio.
    • Times interest earned. How would you evaluate each company’s solvency?

    Show your work in Microsoft® Word or Excel®. Complete calculations/computations using Microsoft® Word or Excel®. Include the four financial statements along with your assignment.Format your assignment consistent with APA guidelines.