International Analysis of Organization Design

This assignment involves selecting one country outside the U.S. that is of particular interest and relevance to you. The assignment is to write an 8-10 page paper that summarizes the culture of the country and how the culture influences the elements of organization design (organization structure, job design, scanning practices, human resource systems, etc.) and management practices. One option for this assignment is to select a multi-national company that has operations in a particular country as the focus of your analysis. You are also encouraged to review Chapter 6 in the Daft text (Designing Organizations for the International Environment) to generate potential countries and topics for your paper. As with the other selected individual assignments, you will want to integrate your findings with the concepts and principles discussed in the course. Your final paper should be 8-10 pages and include at least six (6) academic references from the course material.

Help Improve this Course with Educational Videos

Help Improve this Course with Educational Videos-ATTITUDE THEORY CLASS

Post in the subject line of a thread in this discussion board a topic specific to this course no 2 students can do the exact same topic for this assignment so post early and before you begin working.

Find 4 short videos on TED Talks or YouTube (or another open-source) that are educational about your topic.  These videos cannot contain a ton of advertising for a company.

In a word document, titled Videos about Topic Name, post each link (the hyperlinks must work or I wont receive extra credit), a title for the video and a 4 or 5 sentence description of the video and why it is a good resource for this course (what you will learn by watching it).

Discussion Board Assignments
Minimum of 500 words in length
Must incorporate and cite the required reading
Must incorporate and cite at least 2 other sources (journal articles not books)and the required reading

Required Reading: Kraut, A. I. (1996).  Organizational surveys.  San Francisco, CA: Jossey-Bass. Chapter 10 is attached (power point)

continuation

For one of the pages, I am allocating it to the previous order. For the other page, use the space to incorporate one of the research that I did called “return of eugenia cooney.” I have attached it down below. Use it as necessary and accordingly.

This entire paper (including the previous order), so the 4 page paper, will essentially be a continuation of my previous paper. Both these papers will be one cohesive paper about social media’s relationship/effect on eating disorder. I will attach that paper on here too so that you can read it and have a feel of how the essay should turn out so that it can have a better flow. On the previous paper, it focuses more on the negative effects of social media on eating disorder and how it sort of leads to or encourages eating disorder. So for this particular essay, try to keep it balanced and maybe talk about the positive side of it. You can decide whether the “return of eugenia cooney” one will fall under the negative one or the positive one. Make sure to spend at least one page discussing the eugenia cooney one. You can cut and paste or edit accordingly. I do not mind you using that research paper. However of course, please do additional research for the other 3 pages of the paper.

C# WPF Assignment

    1) An abstract Media class that contains the following properties: a string title, a string media type, a unique int serial number, an int for number of times lent, a boolean that indicates whether it is currently borrowed or available, and a string that represents the name of the library member currently borrowing the piece of media
    2) A Book class that inherits from Media and has a page count property
    3) A Magazine class that inherits from Book and has an issue number property
    4) A Movie class that inherits from Media and has a run time property
    5) A LibraryMember class that contains a string name property
    6) A static Library class that contains a collection of all of its media and a list of all its members
    7) Initialize your collection of media in Library to contain 5 books, 5 magazines, and 5 movies (you may pass whatever values you want into their constructors for title, page count, etc.)
    8) Initialize your collection of members in Library to contain 5 library members with names of your choosing.
    9) A DataGrid of all media in the library that shows their title, type, whether they are available or lent out, and who is currently borrowing them.
    10) A DataGrid of all library members in the library that shows their names.
    11) The ability to lend out available media. When media is lent out, a LibraryMember must be selected, and then the media display should reflect who is currently borrowing the media.
    12) The ability to have lent media brought back
    13) A popup that appears whenever media is lent or brought back, which says what has occurred. If the user tries to lend out an unavailable piece of media or tries to have media brought back that isnt lent out, the popup should tell the user what went wrong.
    14) A Modify Media button which, if a Media is currently selected when it is clicked, opens a new page. The new page should allow the user to modify the title and media type of the Media. This page should contain a submit button. When the submit button is clicked, the changes made to the title and media type should be applied to the actual Media object in the model, and we should be returned to the main window, where the changes that were made to the Media object should be reflected in the Media data grid.
    15) A Modify Member button which, if a LibraryMember is currently selected when it is clicked, opens a new page. The new page should allow the user to modify the name of the LibraryMember. This page should contain a submit button. When the submit button is clicked, the change made to the name should be applied to the actual LibraryMember object in the model, and we should be returned to the main window, where the changes that were made to the Librarymember object should be reflected in the LibraryMember data grid.
    16) Create a virtual function in Media called MediaInfo that returns a string that details the medias Title, MediaType, SerialNumber, IsAvailable, TimesLent and CurrentBorrower . Override this function in the Book, Magazine, and Movie classes. In each of these classes, the overridden function should first call the base function, and then add the string the base function returns to an additional string about PageCount, IssueNumber, or RunTime (for Book, Magazine, or Movie, respectively).
    17) Add a button to the WPF window that allows the user to display the info (the string returned by the function in the previous feature) of the currently-selected media in a popup.
    18) Add a list of Media called borrowHistory to the LibraryMember class. Make it so that whenever some media is lent out, the library member who is borrowing it has a reference to that media added to their borrowHistory list.
    19) Add a list of Media called currentlyBorrowed to the LibraryMember class. Make it so that whenever the library member borrows some media, a reference to that media is added to the currentlyBorrowed list, and when the library member returns some media, the reference to that media is removed from the currentlyBorrowed list.
    20) Add a function to the LibraryMember class called MemberInfo that returns a string that includes the members name, as well as a list of all the titles of media this member has ever borrowed, and finally a list of all the media titles the member is currently borrowing.
    21) Add a button to the WPF window that allows the user to display the info (the string returned by the function in the previous feature) of the currently-selected member in a popup.