Part 5
Assume an economy is in recession and the government is considering using fiscal stimulus measures to boost spending, production and employment.
a) Using the IS-LM curve diagram, illustrate the crowding out problem that could occur as a result of increased government spending. Make sure to clearly indicate the new equilibrium position including showing how both the interest rate and level of Y change.
b) Explain how 'crowding out' can harm productivity growth.
c) Explain how the 'crowding out' problem associated with increased government spending can be avoided. In your answer identify any additional policy that is needed.
At the end of your answer to Part 5 state the combined word count for sub-parts b and c. Your answer to Part 5 sub-part b and c should not exceed 150 words.
(3 marks for sub-part a, 1.5 marks each for sub-parts b and c plus 0.25 marks for satisfying the word count requirements - Part 5 worth 6.25 marks)
In: Economics
Mayfair Office Chairs, Inc. is a small firm in the office furniture industry. They have asked you to help them complete the limited data they have gathered in an effort to enable effective decision-making. Some work can be done using MS Excel but it must be copied to an MS Word file for the final submission of this assignment. To assist Mayfair Office Chairs, Inc., respond to the following: Using MS Excel or a table in MS Word, complete Table-1 (Mayfair Office Fairs, Inc., Cost and Revenue Data). Create Demand and Supply Curve Assume that the price is $165. Assume the fixed costs are $125, at an output level of 1. Assume that the data represents a firm in pure competition. Show your calculations. Explain the MC=MR Rule. Describe the market structures to which this rule applies. Create a chart to illustrate the data in Columns 9 and 10. Describe the profit maximizing (or loss minimizing) output for this firm. Explain why or why not there an accounting profit? Explain why a firm in pure competition is considered to be a “price taker.”
In: Economics
A psychologist researching memory prepares a list of 40 noun pairs (e.g., dog/bicycle; grass/door). He then recruits two groups of subjects. Group 1 is given 5 minutes with the list and is instructed to create a mental image for each pair (for example, to imagine a dog riding a bicycle). Group 2 is also given 5 minutes, but they are told to memorize the pairs. Later each group is given a memory test in which they are given the first word of the pair and are asked to recall the second word. The number of words correctly recalled is reported below. Based on these data, can the researcher conclude that mental images affected memory? Answer using the 7 steps of hypothesis testing, setting alpha at .01. You are additionally given the following information: MI = 26, MNI = 18, sI = 4.71, sNI = 4.22, SEMI – NI = 2
Group 1 (Images) Group 2 (No images)
19 23
20 22
24 15
30 16
31 18
32 12
30 16
27 19
22 14
25 25
In: Statistics and Probability
Select someone in a leadership position at your organization or at a local company where you might seek employment. This individual could be a director, manager, supervisor, or CEO of the organization.
Write a 1,050-word profile of the individual that you interviewed for your company's newsletter, and include the following:
Identify the individual and their position within the company, and briefly describe the organization.
Interpret the individual's leadership style based on the Five-Factor personality model, and offer one or more examples of the management and leadership roles of this individual.
Explain one incident where this individual had to solve a difficult problem or situation because things did not go as planned.
Describe the lessons that she/he learned from being able to problem solve, even when what she/he had been taught did not work.
Format your profile in the form of a newsletter (the final format may vary depending upon the company's style; please feel free to use either the provided template or to check the Internet or Microsoft® Word for additional newsletter templates).?
Click the Assignment Files tab to submit your assignment.
In: Accounting
Max Tennyson is a small business owner, specializing in renting vacation cottages in Europe and Africa. Up to now, his business, Tennyson’s Travel, has been manageable with spreadsheets and manual records. All business has been conducted in the travel office or on the phone. TT has been experiencing phenomenal growth, at a rate of 25% a year. Max has only 3 employees currently but is now looking to expand the operations, up to 10 employees. He knows that he needs to automate the records and is unsure where to start. He also believes that he needs to create a website. Keep in mind that both the travel agents and customers would like to search the inventory using criteria, such as price, location, property type, number of bedrooms and how many people total can sleep in property.
Max hires you to analyze his business/industry and come up with a plan to automate his small business.
In a Word document memo, explain the problem or opportunity and define the project scope and constraints. (Word – PROJECT STATEMENT AND SCOPE)
In: Operations Management
Que. As we saw in the class lecture one of the most controversial ideas of Marx was his quote: “Religion is the opium of the people”. Many people now discuss the decline of the role of religion in people’s lives and wonder if Marx’s concept may be outdated. Here is your chance to update Marx’s ideas. For this question, you are to substitute the word “media” for the word “religion” in the above quotation. In other words, the quote you are dealing with reads “Media (or “social media”, “Facebook”, “Twitter”) is the opium of the people”. What you are to do is to focus on one aspect of media (it could be television, “reality tv”, video games, advertising, “second life” computer simulation games, sports (on television and in person), movies, social media, “Facebook”, or “Twitter”) and using the ideas discussed in the summary of Marx’s quotation – apply the same analysis to media today. Using examples to support your ideas, in what ways can it be said that today media operates to “dull the senses” and thereby (using Marx’s terms) operates as a highly addictive and sedative “opium of the people”?(subject is sociology)
(The answer need to be soft copy only)
In: Psychology
In this assignment, you are required to respond to the question “Why do good?” in the context of a real-world case study of global concern (excluding references). Note: Global concerns are issues that every nation in the world is concerned about, such as child labour, human trafficking, migration, torture, humanitarian intervention, pandemic, scarce resources, discrimination, wars, online privacy, etc. This list is non-exhaustive.
(Minimum word limit: 400 words, Maximum word limit: 600 words)
(a) Present a real-world case study of global concern. You should identify relevant ethical considerations for discussion.
(b) Demonstrate ethical reasoning in your personal response to the question of “Why do good?”. You should make a claim and explain what doing good means in your case study (underline your claim), and apply any ethical theories you have learned in this course to support at least 2 reasons for your claim (number your reasons).
(c) Discuss possible constraints or limitations to any of the theories you have discussed within the context of this case study.
In: Psychology
The files provided in the code editor to the right contain syntax and/or logic errors. In each case, determine and fix the problem, remove all syntax and coding errors, and run the program to ensure it works properly.
Please Fix code and make Copy/Paste avaliable
// Application allows user to enter a series of words
// and displays them in reverse order
import java.util.*;
public class DebugEight4
{
public static void main(String[] args)
{
Scanner input = new Scanner(System.in);
int x = 0, y = 0;
String array[] = new String[100];
String entry;
final String STOP = "STOP";
StringBuffer message = new StringBuffer("The words in reverse order are\n");
System.out.println("Enter any word\n" +
"Enter + STOP + when you want to stop");
entry = input.next();
while(!(entry.equals(STOP)))
{
array[x] = entry;
++x;
System.out.println("Enter another word\n" +
"Enter " + STOP + " when you want to stop");
entry = input.next();
}
for(y = x - 1; y > 0; ++y)
{
message.append(array[y]);
message.append("\n");
}
System.out.println(message);
}
}
In: Computer Science
This lesson's Group Activities are:
Use python and use double strings
Talk like a Pirate! In this activity you are to create an English to Pirate Translator. Users should input a phrase and your program should translate it into pirate speak. A few rules:
1. Certain words need to be converted:
2. You need to obey capitalization and punctuation: if the word is capitalized, then its translation should also be capitalized. If the sentence ends in a period, then the translation should end in a period. To keep punctuation simple, you can stick to coding for commas and periods, and ignore all the rest.
3. Pirates like the word "arr". For fun, randomly insert it into your translation.
4. Remember to use all the tools in your arsenal, especially mainline logic, functions, loops, and error handling.
In: Computer Science
The total equity of the business is P500, 000. Owner’s equity is P400, 000. Plant and Equipment is 45% of total Assets, the total current assets is
Select one:
a. P225, 000
b. P220, 000
c. P275, 000
d. P100,000
Mr. A has the following revenue transactions during April of the current year: Rendered services: Cash, P5, 000 & on credit, P3, 500; received P5000 advance payment for services to be rendered in May. The amount of income to be recognized in April is
Select one:
a. P5,000
b. P13,500
c. P10,000
d. P8,500
Odd-man out: Select the word that does not belong to the group.
Select one:
a. Balance Sheet
b. Statement of Cash Flow
c. Worksheet
d. Income Statement
The company's performance for a given accounting period is measured and evaluated through the income statement.
Select one:
True
False
Odd-man out: Select the word that does not belong to the group.
Select one:
a. Factory Insurance
b. Depreciation of Delivery Equipment
c. Salaries of factory supervisor
d. Factory Supplies
In: Accounting