Respond to the following prompts in a post with a minimum of 200 word
Please answer the second and third parts
In: Economics
Note : the Answer should be computerized , in Word format
The student is requested to select a very simple business, one with a single product. Some possibilities are:
A child’s lemonade stand
A retail DVD rental store
A coffee shop
A retail store selling compact discs
An athletic shoe store
A cookie stands in a mall
However, you are encouraged to use your imagination rather than just select one of these examples. After, please complete the following tasks:
1. Make a list of all fixed costs associated with running the business you selected. Estimate the amount of each fixed cost per month (on per day or per year, if one of them is more appropriate for your business).
2. Make a list of all variable costs associated with making or obtaining the product or service your company is selling. Estimate the cost per unit for each variable cost.
3. Imagine a selling price and calculate contribution margin. With the fixed and variable costs you have identified, compute the break-even point for your business in either units or dollar sales.
4. Assess the prospects of your business making a profit.
In: Accounting
This is messy - the problem was provided in excel and I have copied to Word. There is a similar problem answered, but I need excel formulas.
Saxum Vineyard, in Paso Robles, CA, is one of the more than 8,000 wineries in the United States. While Saxum produces a number of different kinds of wine, they focus their production on Syrah (also known as Shiraz). Saxum sells their wines all over the United States. Suppose you manage a vineyard like Saxum and want to determine how much you should charge for your Syrah. Suppose the market demand function for Syrah is as follows.
QD = 200 - 38.18PO + 8.35PS - 2Pc + 10Inc + .8TS + .5M21
Where QD is monthly demand for bottle of Syrah (in millions), PO is the price of Syrah in the market, PS is the average price of substitute bottles of wine (other varieties), Pc is the average price of a pound of cheese and is used to gauge the price of complementary goods, Inc is the average US per capita income (in thousands), TS is the number of wine trade shows and competitions each year in which firms can attend to market their wines, and M21 is the number (in millions) of millennials in the US over the age of 21. This last variable is included to capture a change in consumer preferences; millennials are drinking wine at a much higher rate than previous generations.
The market for Syrah also has supply, produced by wineries similar to Saxum Vineyard and your winery, which can be stated as follows.
QS = -100 + 22.93PO - 5PPI - 10PS + 8Temp + 1Sup
Where QS is monthly supply of bottles of Syrah (in millions), PO is the price of Syrah in the market, PPI is the Producer Price Index (an index used to gauge changes in the costs of production in the US), PS is the price of substitute wines which could easily be produced instead of Syrah, Temp is the expected temperature during the harvest season for grapes, and Sup is the number of wineries that supply Syrah in the market (in thousands).
Using the market supply and demand functions for Syrah given, fill in the template provided with the coefficients for each function. Using the information below, fill in the values for each of the variables except Price of Syrah.
Demand:
-Price of Substitutes: $18
-Price of Cheese: $15
-Income: $53,000
-Trade Shows/Competitions: 3
-Millennials = 45 million
Supply
-PPI: 111
-Price of Substitutes: $18
-Temperature: 60
-Number of Suppliers: 8,000
Market Demand
Coefficient Values
Intercept ? ?
Price of Syrah ? ?
Price of Substitute ? ?
Price of Cheese ? ?
Income ? ?
Trade Shows ? ?
Millenials ? ?
Market Supply
Coefficients Values
Intercept ?
Price of Syrah ? ?
PPI ? ?
Price of Substitute ? ?
Temperature ? ?
Suppliers ? ?
When the price of Syrah increases by $1, what is the effect on quantity demanded and quantity supplied?
How much does a $1 decrease in the price of substitute bottles of wine shift the demand and supply curves?
Suppose that the price of Syrah is currently $22 per bottle. How many bottles will be demanded and supplied monthly? Is there a shortage or surplus and of how much?
If the market price of Syrah falls to $16 per bottle, how many bottles will be demanded and supplied monthly? Is there a shortage or surplus and of how much?
Trying prices in $1 increments between $16 and $22, at what price and quantity does the market equilibrium occur?
Suppose that the PPI increases to 123.222. If the price of wine stays at $20 per bottle, what quantity will be supplied in the market, and will the increase in the PPI create a shortage?
With the increase in PPI to 123.222, at what price will the market be in equilibrium? What quantity will be demanded and supplied at this price?
In: Economics
Create a program in C that counts the number of characters in a word when a user inputs a string. Use stdin to read an input string. For example, if a user inputs: “The dog is good” the output should be
a= [The], b=3
a= [dog], b=3
a= [ is], b=2
a= [good], b=4
a= [ ], b=0000
Take into account EOF. If an EOF is reached at the end of the string then the output should be 0000. (example above)
Don’t take leading spaces into consideration. If there is spaces at the end of a string, for example “She ate_” ( _ is a space after the e), then the output should be
a= [She], b=[3]
a= [ate], b=[3]
a= [ ], b=[-1]
a= [ ], b=[00000]
If a newline at the end of the string, then output 1000. If user input “My name is Joe” with a new line after Joe then output.
a= [My], b=[2]
a= [name], b=[4]
a= [is], b=[2]
a= [Joe], b=[3]
a= [ ], b=[1000]
a= [ ], b=[0000] // End of file (EOF) is reached after the newline.
If the word “stop” is encountered in the string then print out 0000. If a user inputs “He said stop” then the output should be
a= [He], b=[2]
a= [said], b=[4]
a= [stop], b=[0000]
In: Computer Science
Create a program in C that counts the number of characters in a word when a user inputs a string. Use stdin to read an input string. For example, if a user inputs: “The dog is good” the output should be
a= [The], b=3
a= [dog], b=3
a= [ is], b=2
a= [good], b=4
a= [ ], b=0000
Take into account EOF. If an EOF is reached at the end of the string then the output should be 0000. (example above)
Don’t take leading spaces into consideration. If there is spaces at the end of a string, for example “-----She ate---” ( - is a space, so there is 3 spaces after the e ), then the output should be
a= [She], b=3
a= [ate], b=3
a= [ ], b=-1
a= [ ], b=-1
a= [ ], b=-1
a= [ ], b=0000
Will need to print a= [ ], b=[-1] for each space if there is any.
If a newline at the end of the string, then output 1000. If user input “My name is Joe” with a new line after Joe then output.
a= [My], b=2
a= [name], b=4
a= [is], b=2
a= [Joe], b=3
a= [ ], b=1000
a= [ ], b=0000 // End of file (EOF) is reached after the newline.
If there are multiple newlines in a string that you will need to print out a= [ ], b=1000 for every new line.
If the case sensitive word “stop” is encountered in the string then print out 0000. If a user inputs “He said stop” then the output should be
a= [He], b=2
a= [said], b=4
a= [stop], b=0000
a= [ ], b=0000 // End of file (EOF) is reached after the word stop
So if a string contains the word "stopper" it will not print out a= [stop], b=0000. It would print out a= [stopper], b=7.
Please use these strings given and show output. Thank you.
In: Computer Science
What is wrong with this sentence? What is another word for proper? This project will be done with our amazing staff/personnel. This is going to ensure that there is a smooth operation of work and consistency. Our amazing staff has been used to PROPER project management and specialization depending on the area of expertise. The personnel includes a project coordinator, business development officer, sales and marketing strategist, finance officer, administrative team, technical team, and a driver. All these people in the panel will work as a team with consistent communications which is crucial for the success of any project. The project coordinator in our team has over five years of experience in project management with several successful projects completed. Therefore, given this project, it will not be a gamble on whether it be successfully done; instead, it will be a question of whether Far West staff is cooperative enough. PROPER coordination with Far West staff will speed the project and minimize unnecessary delays. Our business development personnel have over three years of experience and has acquired and maintained several businesses for our firm. Therefore, given this evaluation project, it is a sure bet that the school administrations will be ready to purchase this training package. The officer is also very efficient in creating and maintaining customer intimacy, a virtue that is very crucial in selling and marketing of any product. I am looking for another word to replace PROPER
In: Operations Management
in a 50 to 100 word response. Given the fact that the brand war is a continuous one, discuss the basic differences between National brands and store brands. Regarding the merchandising of both of these brand types what advantages, if any, do retailers like Wal-Mart enjoy?
In: Finance
THIS IS FOR JAVA
Given an oversize array of size words and a word to remove, write a method that returns the array with each occurrence of the given word removed.
Shift the remaining words in the nonempty part of the array to the left so that each occurrence of the given word is overwritten. (Leave the words in the empty part of the array unchanged.)
Hint: To understand the test cases, note that the size (but not the capacity) of the array shrinks if removeWord appears in the array. In the first test case, for example, "up" is removed and "down" and "left" shift to the left by one element. The size of the array shrinks from 3 to 2, although the capacity is still 3. The third element is now in the empty part of the array. This element is equal to "left", but it is treated as empty space.
here is the code:
| import java.util.Arrays; | |
| import java.util.Scanner; | |
| public class RemoveOversize | |
| { | |
| public static void main(String[] args) | |
| { | |
| // Do not edit this code | |
| Scanner keyboard = new Scanner(System.in); | |
| final int SIZE = 20; // for the oversized array | |
| String[] array = new String[SIZE]; | |
| // Read in data from keyboard--all array elements are presumed to be on one line | |
| String contents = keyboard.nextLine(); | |
| String[] contentsInArray = contents.split(" "); | |
| // Make sure we're in the range of both arrays | |
| int index; | |
| for(index = 0; index <contentsInArray.length && index < array.length; ++index) | |
| { | |
| array[index] = contentsInArray[index]; | |
| } | |
| int arraySize = index; | |
| String value = keyboard.nextLine(); // Get the value to remove | |
| int resultSize = removeOversize(array, arraySize, value); | |
| System.out.println("The resulting array contains " + Arrays.toString(array) + " and is of size " + resultSize); | |
| keyboard.close(); | |
| } | |
| public static int removeOversize(String[] source, int sourceSize, String removeMe) | |
| { | |
| // Write the code below. | |
| return null; | |
| } | |
| } |
In: Computer Science
NOTE: It will be necessary to compose these documents in Microsoft Word in order to recreate proper email formatting. Please include “From:”, “Sent:”, “To:”, “CC:”, and “Subject:” lines for each email.
You are the owner of Oceanarium, a seafood restaurant in Birmingham, Alabama. This morning you discovered that your restaurant’s daily 6:00 AM shipment of fresh seafood from Atlantis Seafood was spoiled due to a faulty refrigeration unit in the delivery truck. Following your discovery, you made an immediate phone call to Atlantis Seafood to alert them of the situation. You spoke with a lower-level employee because no one else was available, and you were told management would be informed of your issue. You should now send a follow-up email to Arthur Curry, the shipping manager at Atlantis Seafood, detailing the problem and how you would like for it to be resolved. First, clearly state your case with specific details. Second, ask for a reasonable solution to the problem. Finally, schedule a new shipment of untainted seafood from Atlantis Seafood immediately. Be sure to indicate that you have attached an invoice with the items you will need replaced. As this is a first-time occurrence, do your best not to sever ties with your most important food supplier. You have a longstanding, friendly business relationship with Arthur, so you should address him with the appropriate tone. Be sure to provide a specific subject line and signature block.
Don’t forget to proofread your work for grammar, usage, and spelling.
The contact information for your business is as follows:
Oceanarium 2020 11th Avenue South Birmingham, AL 35205
Phone: (205) 255-5555 Fax: (205) 255-5556
In: Operations Management
1. If all the letters of the word ABOUT are arranged at random in a line, find the probability that the arrangement will begin with AB...
2.
The odds of throwing two fours on a single toss of a pair of
dice is 1:35
What is the probability of not
throwing two fours? (Hint: there are 2 conversions here)
All answers are written as fractions for consistency....
Select one:
a. 35/36
b. 1/36
c. 1/35
d. 35/1
In: Math