QUESTION 7 - 6.3
I dislike using Microsoft Word and prefer to use other work processing software. However, nearly everyone that I work with uses Word, so I have to use this product when writing articles, books, and other research reports. For this reason, Microsoft Word holds a near-monopoly position in the word processor market. What is the barrier to entry that helps Microsoft maintain their market power?
|
Network externalities |
||
|
Input barrier |
||
|
Barrier created by the government |
||
|
Economies of scale |
QUESTION 8 - 6.3
Suppose there are 100 firms that sell athletic shoes and each has one percent of the market share. What is the HHI statistic for this market?
|
10 |
||
|
100 |
||
|
1000 |
||
|
10000 |
QUESTION 9 - 6.3
Suppose there are six firms in the breakfast cereal market. The four largest firms have 20 percent of the market share each, and the two smallest firms have 10 percent of the market share each. If one of the largest firms buys one of the smaller firms, what is the market share of the largest firm in the market after the buyout is concluded?
|
10 percent |
||
|
20 percent |
||
|
30 percent |
||
|
40 percent |
QUESTION 10 - 6.3
What happens to the profits of monopolistically competitive firms in the long run?
|
Profits remain positive and do not change over time |
||
|
Profits become negative |
||
|
Profits decline to zero |
||
|
Profits increase |
In: Economics
Question 1: Further Aspects Budgeting and Variance Analysis (15 marks)
YammiJuice manufactures the product ExoticJuice by using mango, apple and banana as ingredients. The company has provided you with the following cost and sales information which relates with the period just ended:
Standard cost per litre of SuperJuice:
|
Materials |
Kilograms |
Price per kilogram $ |
Total $ |
|
Apple |
150 |
40 |
6,000 |
|
Banana |
120 |
30 |
3,600 |
|
Mango |
80 |
60 |
4,800 |
|
Total |
350 |
14,400 |
|
|
Less Standard loss |
30 |
||
|
Standard yield |
320 |
Budgeted sales for the period are 40,960 litres at $160 per litre. There were no budgeted opening or closing inventory of SuperJuice. The actual materials used and costs were:
|
Materials |
Kilograms |
Price per kilogram $ |
Total $ |
|
Apple |
16,800 |
40.25 |
676,200 |
|
Banana |
16,500 |
20.80 |
343,200 |
|
Mango |
8,700 |
60.40 |
525,480 |
|
Total |
42,000 |
1,544,880 |
|
|
Less actual loss |
5,520 |
||
|
Actual yield |
36,480 |
All of the production of ExoticJuice was sold during the period for $160.75 per kilogram.
|
Required 1.1 Calculate material mix variance for each material and in total for SuperJuice. Show your workings Your answer: Show your workings here (Use table if necessay. Expand the space as required): Word count= |
|
Required 1.2 Calculate material yield variance in total for SuperJuice. Your answer (expand the space here): Show your workings here (Use table if necessay. Expand the space as required): Word count = |
|
Required 1.3 Explain your findings in requirement (1.1 & 2). In your explanations include what happened to material yield variance. [Word limit: 150 words. Note the word count at the end of your answer] Your answer (expand the space here): A Word count = |
In: Accounting
POST #3
I POST IT TWICE, DONT ANSWER TO BOTH POSTS. DO NOT COPY YOUR ANSWER TO BOTH POSTS. I NEED TWO DIFFERENT VIEW. Thanks
YOUR ANSWER WILL BE CHECK FOR PLAGIARISM.
***PLEASE DO NOT UPLOAD PHOTO FOR ANSWER
***** DO NOT COPY FROM ANY WEBSITE. USE YOUR OWN WORD. DO NOT ANSWER IF YOU ARE NOT COMFORTABLE FOR ANY RESON.
****USE YOUR OWN WORD
****USE YOUR OWN WORD
****USE YOUR OWN WORD
****USE YOUR OWN WORD
--------------------------------------------------------------------------------------------------------------
Discussion
What to Do
Please select from any one of the following activities. Make sure you answer all components of the question.
1. Herbert Spencer is credited with developing the “survival of the fittest” concept and the philosophic approach known as Social Darwinism. The idea behind this approach was societies evolve from primitive to civilized societies and that to help primitive societies interferes with the natural process of either evolving or becoming extinct. For example, nations like the United States have for decades intervened in sub-Saharan African countries in an attempt to fight AIDS and end poverty with little success. Discuss your thoughts on this subject and whether or not aid to poor societies actually helps them or simply creates dependency?
2. To understand peoples’ behavior, sociologists look at their social location in society. For this assignment, you will need to identify the corners in life you occupy by describing your job, income, education, gender, age, and race/ethnicity. Explain how each of these elements influences your self-concept and behavior. Does your social location impact you when you go out (i.e., socially or romantically)? When it comes to life chances and opportunities? Do you experience discrimination?
In: Economics
1)Check the correct statements.
Group of answer choices
a)If a security is underpriced, then the expected holding period return is above the market capitalization rate.
b)The value of the equity equals the present value of all future payouts (dividends plus repurchases).
c)The value of a share equals the present value of all future dividends per share.
d)If a firm reinvests its earnings at an ROE equal to the market capitalization rate, then its earnings-price (E/P) ratio is equal to the market capitalization rate.
e)The value of a share equals the present value of earnings per share assuming the firm does not grow, plus the NPV of all future investments.
2)Check the correct statements.
Group of answer choices
a)Everything else equal, the higher the expected dividend growth rate, the higher the P/E ratio.
b)Everything else equal, the higher the plowback ratio, the lower the P/E ratio.
c)Everything else equal, the higher the plowback ratio, the higher the P/E ratio.
d)Everything else equal, the higher the risk of the stock, the lower the P/E ratio.
e)Everything else equal, the higher the risk of the stock, the higher the P/E ratio.
Match the stock valuation model from the left column with the cash flows used in that model from the right column.
3) Group of answer choices
Total Payout Model
word box: Dividends per share Free Cash Flow to the Firm Dividends plus buybacks
Dividend Discount Model
word box: Dividends per share Free Cash Flow to the Firm Dividends plus buybacks
DCF Model
word box: Dividends per share Free Cash Flow to the Firm Dividends plus buybacks
4)
Match the stock valuation model from the left column with the discount rate used in that model from the right column.
Group of answer choices
Total Payout Model
word box: equity cost of capital weighted-average cost of capital
Dividend Discount Model
word box: equity cost of capital weighted-average cost of capital
DCF Model
word box: equity cost of capital weighted-average cost of capital
In: Finance
We were asked this:
Write a function that takes a list, and returns a list representing each word whose reverse is also in the list.
def find_reversals(lst: List[str]) -> List[str]:
Each pair, such as 'abut', 'tuba', should be represented by the first element encountered. Don't report the same pairs twice.
Don't list palindromes.
I wrote this, which might not be optimal but passes the unit test!
def find_reversals(lst):
#Place to save to
found_reversals=[]
#Make each string lowercase
for i in range(len(lst)):
lst[i]=lst[i].lower()
#Check the lowercase list
for i in range(len(lst)):
for j in range(i+1,len(lst)):
#Reverse the string using indexing feature ::-1
reversed_string=lst[j][::-1]
#If the original word on the list == the reversed STRING and is not
a palindrome
if(lst[i]==reversed_string and lst[i]!=lst[j]):
#If the string is not a duplicate item
if lst[i] not in found_reversals:
#See if a pair exists, then doesn't append in the list
if lst[i][::-1] not in found_reversals:
found_reversals.append(lst[i])
return found_reversals
The next problem wants us to recycle this...
Write a program that finds the reversals in Downey's word list.
List each pair only once, and only report the first word: List 'abut', but not 'tuba'
Do not list palindromes.
def find_reversals_in_file(fileName: str) -> List[str]:
If you try to open a file that does not exist, you should catch a FileNotFoundError and print an error message in your own words¶
I have this written:
def find_reversals_in_file(filename):
try:
with open(filename) as f:
#Use splitlines to remove the \n from the end of lines
f = f.read().splitlines()
#Place to save all words from file to
file_words = []
#Split the lines of words into multiple words using ' ' as a
delimiter
for x in f:
y = x.split()
for temp in y:
#Don't save any spaces
if len(temp.strip()) == 0:
continue
file_words.append(temp)
#If you can't open the file, return an error message.
except:
print("File does not exist.")
return [];
lst = find_reversals_in_file("words.txt")
result = find_reversals(lst)
print(f"There were {len(lst)} reversals")
for word in result:
print(word)
What am I missing here? Thank you in advance!
In: Computer Science
What are some of the disadvantages that can result when companies use channels of distribution to market their products overseas? 400 word
In: Accounting
The term innovation has begun to be a buzz word in healthcare. How does this concept fit into leadership and in knowledge of the healthcare environment?
In: Nursing
Please answer all in microsoft word/typing format
c.Explain how a firm uses profit versus accounting profit.
.
In: Economics
Explain in your own word why targeting interest rates is so difficult for central banks if the demand for money is unstable.
In: Finance
Explain in your own word why targeting interest rates is so difficult for central banks if the demand for money is unstable.
In: Finance