Applied Economics Inequality

Max 1,500 words, Arial 12 point font & double spacing
Introduction
This should say what the essay is about and your particular slant on the subject and how you are going to develop it.
Main part
Contains the main contents and should have sub- headings, which form the skeleton of the essay. It should be structured in such a way that the subject unfolds in a coherent manner.
Conclusion
Draws the main points together.
Questions to answer:
1. Briefly explain the US pattern of educational wages over the period that is covered in the paper.
2. Now briefly explain what happened to the supply of graduates over the same period?
At the same time period (1963 1987) the supply of high school and college graduates
3. Why did the authors compositionally adjust the average wages that they then used to estimate the parameters in equation (17)?
4. Provide a full economic interpretation of the main findings from the paper and provide a critique based on the more recent evidence found in the wage inequality literature.

Unit V Journal

Unit V Journal Open
Weight: 2% of course grade
Grading Rubric
Instructions
Imagine that you are the owner of a discount furniture company that has expanded from a rural store in one state to a chain of 20 stores stretching across the United States.

As your company has expanded, you have been considering implementing an enterprise resource planning (ERP) solution. What are at least three reasons why your company should implement such a system? Look at the other side, and think of at least two challenges that you would face when implementing an ERP.

Your journal entry must be at least 200 words. No references or citations are necessary.

Popular Music and Globalization

Music is one of the areas of culture. It can influence of cultures and, at the same time, it can be influenced by others through globalization.

Write an insight paper after reading the article entitled, Popular Music and Globalization, which is now available in course materials.

Insight Paper Format

Title

Introductory Paragraph: Context/Background. Your last sentence must be your main point.

Body Paragraph 1 (What have you learned from the reading article? Relate it to your personal experience. Use the pronoun I)

Body Paragraph 2 (A. What is your opinion of the topic? B. Do you agree with the author? If yes, explain why? If not, explain why? Use the pronoun I)

Concluding Paragraph

Reminders:

Use Tahoma #12 all the time.
Always write in double space.
Use Microsoft Word (.docx) as attachment when you submitting. Do not write in the text box itself.
Compose the introduction-body-conclusion format.
The first paragraph is always the introduction and the last paragraph is the conclusion. The body portion may have one or more paragraphs unless you are given special instructions.
Always write a personal title of your essay.
Check the rubric for scoring so that you know how to get the perfect score.
Similarity match is always checked when submitting your essay. Make sure that you should not reach 10%. If you do, then your essay will not be checked. Extend your essay as to lessen the percentage.
The minimum number of words is 300 unless there is a special instruction given.
Submit before the deadline on the proper button or name of the task.
You are not allowed to submit your essays via Blackboard course message.
Violations of the above-mentioned guidelines results to non-checking of your essay. You will automatically get zero.

object orianted

The Task You have been given the task to create the basis for a system to help cinemas to handle its business. The system must work for a number of cinemas, for example being shared with New York and Las Vagas. It is important that you create an object-oriented solution for this task. Attributes (fields) need to be properly encapsulated and classes for different parts of the system must be created and sent to various other parts of the system. At the foundation of this system is the Cinema which holds the name of the cinema (like “Filmcity New York” or “TheaterPalace Las Vagas”) as well as an address. Each cinema consists of a number of screens, that is the rooms in which the film is projected and you need to keep track of the number of seats in each room. For each screen there is a show, that is the film that is shown in the room at a specific date and time. It is important to keep track of the date and time, but the time can be a simple integer representing the time of day as a whole number (that is, there is a showing at 18, another at 20 and so on). A Film is just that, a film like Fast and Furious 9 or Midnight Sun and we need to know the length and release year of all films. Each film needs to know at what times it is shown and on what cinemas. Remember that a film can be shown at different times during a day and in several screens in a day as well for example, the movie Midnight Sun can be shown at 18 on Screen 1 and at 19 on Screen 2. The important part here is that for each cinema, a class (presumably called Cinema), needs to be in control of connecting screens with show dates and films. This should be done in a method called createShowTime() which will need a number of parameters to work. This method, therefore, is the key method to set up the program (or list of films) for a specific cinema. Objects of other classes can be created in a main program and sent as parameters to the cinema. A part from that class, you will need at least three other classes, you decide which classes are needed to create the system. In the cinema class you also need a method called listShowsAtDate () that takes a date as parameter and returns an ArrayList<String> where each string is the information of when a film is shown and on which screen, for ex- ample Fast and Furious 9  at 18:00 in Room 1 and, as another string in the list, Ford vs Ferrari at 20 in Room 1. This is a way to see what films are shown at a specific date at a specific cinema. 
To hand in
To summarise, the following must be handed in:
Source code for all four classes plus a class with a main method that shows that the classes work.
The class Cinema with the methods detailed above, called createShowTime() and listShowsAtDate().
Three more classes in addition to Cinema.
All classes will need more methods than the listed above.
A well-encapsulated object oriented solution.