Question

In: Economics

For this assignment, you will find 3 examples of unintended consequences in class. You may include...

For this assignment, you will find 3 examples of unintended consequences in class. You may include pictures and numbers in the assignment. Do not make it wordy, pictures and numbers are better than words.

3 examples that teacher gives us:

Assignment 1: Unintended consequences

1.

Policy: In 2016, Chinese government aimed to lower property prices by imposing heavy taxes for married couples on the sale of their second property.

Intention: This policy aims to lower housing prices.

Unintended consequences: people rush to get divorced, to avoid paying the taxes.

http://www.chinadaily.com.cn/opinion/2016-09/13/content_26779218.htm

http://world.time.com/2013/04/29/why-chinese-couples-are-divorcing-before-buying-a-home/

2.

Policy: Go Vegetarian, vegetarians advocate that we should consume less meat for better health, better environment and save animals.

Intention: This policy aims to save animals.

Unintended consequences: Millions of animals are killed every year to prepare land for growing crops. The animals in this case are mice and moles and rabbits and other creatures that are run over by tractors, or lose their habitat to make way for farming.

http://abcnews.go.com/Technology/story?id=97836&page=1

http://bitesizevegan.com/environmental-societal-impact/do-vegans-kill-more-animals-than-meat-eaters/

3.

Policy: Children are taught not to talk to strangers

Intention: By not talking to strangers, this may avoid children from coming across with criminals.

Unintended consequence: Talking to strangers can be a good survival strategy for children who are lost or in danger. A Utah cub scout, for example, remained lost in the woods for four days because he hid from search and rescue volunteers out of fear they would steal him. Warning children about strangers does not protect them much, since it is more likely that they will be abducted by someone they already know.

Solutions

Expert Solution

Policy:All Rs 500 and Rs 1000 will not remain legal tender after 8th Nov,2016.(Demonetisation)

Intention:To eradicate black money and make economy more cashless.

Unintended consequence:India's GDP growth fell by 2.1%,1.5million jobs lost and emergence of shadow economy to exchange notes.

I've taken the data from the Indian Express.

Policy:One child policy in China

Intention:The policy was formulated to tackle the problem of ever increasing population in China.

Unintended consequences:
The policy put the lives of children at risk. To avoid financially devastating fines, families who were having a second child and didn’t have an exemption would seek out abortion providers or abandon their children outright without identification. For families that wanted a boy and had a girl, this created numerous orphans and murders that were needless.

Policy:Exemption of tax on automobiles.

Intention:Making transportation affordable to every citizen.

Unintended consequence:Cheap automobiles has led to frequent traffic jams and a rise in the air pollution level.Since automobiles became cheap people started buying more cars than were required by them.


Related Solutions

In Angel, you will find a class called Employee. This class should include a constructor which...
In Angel, you will find a class called Employee. This class should include a constructor which sets name to blanks and salary to $0.00 and a constructor which sets name to a starting name and salary to a set amount. Additionally, the class should include methods to set the name and salary and return the name and salary. Create another method to return the name and salary nicely formatted as a string (hint – research the toString method). You will...
In Angel, you will find a class called Employee. This class should include a constructor which...
In Angel, you will find a class called Employee. This class should include a constructor which sets name to blanks and salary to $0.00 and a constructor which sets name to a starting name and salary to a set amount. Additionally, the class should include methods to set the name and salary and return the name and salary. Create another method to return the name and salary nicely formatted as a string (hint – research the toString method). You will...
Discuss 3 consequences of poor sanitation (lack of adequate toilet facilities) in low-income countries. Include examples...
Discuss 3 consequences of poor sanitation (lack of adequate toilet facilities) in low-income countries. Include examples in your answer.
In this assignment, you are going to find some examples of oligopoly. Oligopoly refers to an...
In this assignment, you are going to find some examples of oligopoly. Oligopoly refers to an industry which is dominated by just a few companies. An example of oligopoly is the industry of cell phone operating system, which is dominated by Android and IOS. In this assignment, find three examples of oligopoly, and briefly discuss the reasons why oligopoly arises in those industries.
You may not use the java.util.Stack class. You may not use the java.util.Queue class. Write a...
You may not use the java.util.Stack class. You may not use the java.util.Queue class. Write a method public static Object removeSecond (): It removes and returns the element just behind the front element. Precondition: The queue has at least two elements. \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ // Queue.java // demonstrates queue // to run this program: C>java QueueApp //////////////////////////////////////////////////////////////// class Queue { private int maxSize; private long[] queArray; private int front; private int rear; private int nItems; //-------------------------------------------------------------- public Queue(int s) // constructor {...
You may not use the java.util.Stack class. You may not use the java.util.Queue class. Write a...
You may not use the java.util.Stack class. You may not use the java.util.Queue class. Write a method public static void removeDownTo (long n): It pops all values off the stack down to but not including the first element it sees that is equal to the second parameter. If none are equal, leave the stack empty. \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ // stack.java // demonstrates stacks //////////////////////////////////////////////////////////////// class StackX { private int maxSize; // size of stack array private long[] stackArray; private int top; //...
C++ Assignment 1) Write a C++ program specified below: a) Include a class called Movie. Include...
C++ Assignment 1) Write a C++ program specified below: a) Include a class called Movie. Include the following attributes with appropriate types: i. Title ii. Director iii. Release Year iv. Rating (“G”, “PG”, “PG-13”, etc) - Write code that instantiates a movie object using value semantics as text: - Write code that instantiates a movie object using reference semantics: - Write the print_movie method code: - Write Constructor code: - Write Entire Movie class declaration
You may not use the java.util.Stack class. You may not use the java.util.Queue class. Ex1: Write...
You may not use the java.util.Stack class. You may not use the java.util.Queue class. Ex1: Write a program that converts a decimal to binary using a stack. My professor gave me this question to code, is this even possible? if it is can someone code it, in java.
You may not use the java.util.Stack class. You may not use the java.util.Queue class. Write method...
You may not use the java.util.Stack class. You may not use the java.util.Queue class. Write method showStack(): It displays the contents of the stack starting with the first inserted element to the last. The stack would contain the same elements after showStack(). . If for example if to an empty stackx we push(20) then push(30) showStack() would print 20 30 ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- // stack.java // demonstrates stacks // to run this program: C>java StackApp //////////////////////////////////////////////////////////////// class StackX { private int maxSize;...
You may not use the java.util.Stack class. You may not use the java.util.Queue class. Write method...
You may not use the java.util.Stack class. You may not use the java.util.Queue class. Write method showStack(): It displays the contents of the stack starting with the first inserted element to the last. The stack would contain the same elements after showStack(). . If for example if to an empty stackx we push(20) then push(30) showStack() would print 20 30 ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- // stack.java // demonstrates stacks // to run this program: C>java StackApp //////////////////////////////////////////////////////////////// class StackX { private int maxSize;...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT