Comprehensive cycle problem: Perpetual System At the beginning…

Comprehensive cycle problem: Perpetual System At the beginning of 2011, the Jeater Company had the following balances in its accounts: Cash $4,300 Inventory $9,000 Common Stock $10,000 Retained Earnings $3,300 During 2011, the company experienced the following events. 1) purchased inventory that cost $2,200 on account from blue company under terms 1/10,n/30. the merchandise was delivered FOB shipping point. freight costs of $110 were paid in cash. 2)returned $200 of inv. that it had purchased b/c inv. was damaged in transit. The freigh co. agreed to pay return freight cost. 3) paid amnt due on account payable to blue co. w/in cash discount period 4) sold inv. that had cost $3,000 for $5,500 on accnt under terms 2/10,n/45 5) receive merch returned from a customer. merch originally cost $400 and was sold to customer for $710 cash. The customer was paid $710 cash for returned merch 6) delivered goods FOB destination in event 4. freight costs of $60 were paid in cash 7) collected amnt due on accounts receivable w/in discount period 8) took a physical count indicating that $7,970 of inventory was on hand at the end of the accounting period. Required a. Identify these events as asset source (AS), asset use (AU), asset exchange (AE), or claims exchange (CE). b. Record each event in a statements model like the following one. c. Prepare an income statement, a statement of changes in stockholders equity, a balance sheet, and a statement of cash flows.

Java program that implement bubble-sort and selection-sort sorting algorithms

1. Using Eclipse to develop the following Java program that implement bubble-sort and selection-sort sorting algorithms.

 

The following are skeletons of the bubble-sort and selection-sort algorithms:

 

Bubble sort:

 

        for (int i = 0; i < array.length; i++)

 

                    for (int j = 0; j < array.length-1; j++)

 

                                if (array[j] >= array[j+1]) {

 

                                            int temp = array[j];

 

                                            array[j] = array[j+1];

 

                                            array[j+1] = temp;

 

                                }

 

 

 

Selection sort:

 

        for (int i = 0; i < array.length-1; i++) {

 

                    int maxIndex = 0;

 

                    int j;

 

                    for (j = 1; j < array.length-i; j++)

 

                                if (array[j] > array[maxIndex]) maxIndex = j;

 

                    int temp = array[maxIndex];

 

                    array[maxIndex] = array[j-1];

 

                    array[j-1] = temp;

 

        }

 

 

 

A sorting algorithm is stable if two data items or objects with equal key values, according to which sorting is performed, do not change their precedence order in the resulting sorted array. The above two sorting algorithms may not be stable sorting algorithms. Your task in this lab assignment is to use debugging techniques to detect unstableness of these two algorithms and fix the problem to make the algorithms become stable.

 

 

 

The following are you programming task and debugging task.

 

 

 

a)      In Eclipse, create a new Java project with name cs2043lab1.

 

b)      Write the following classes and interfaces.

 

·         Define a class called “StudentRecord” as follows:

 

class StudentRecord  {

 

            private String name, int grade;

 

            public StudentRecord(String name, int grade) {this.name = name; this.grade = grade;}

 

            public int getKey() {return grade;}

 

}

 

 

 

·         Define an interface called “Sorter” as follows:

 

interface Sorter {public void sort(StudentRecord[] students);}

 

 

 

·         Define a class called “BubbleSorter” that implement sorter interface as follows:

 

class BubbleSorter implements Sorter{public void sort(StudentRecord[] students){/*implement bubble sort algorithm*/}}

 

 

 

·         Define a class called “SelectSorter” that implement sorter interface as follows:

 

class SelectSorter implements Sorter{public void sort(StudentRecord[] students){/*implement selection sort algorithm*/}}

 

 

 

·         Define the main class called “Lab1App” with main method. The main method asks the user to input data to create multiple StudentRecord objects into an array, and also asks the user to

ENG 315

Justification Report – Part 2
Due Week 5 and worth 150 points

In Part 1 of your Justification Report assignment, you built up the following sections: Problem Statement, Overview of Alternatives, Criteria, and Methods. In Part 2, you will revise Part 1 based on your instructor’s suggestions and add to it the following sections: Evaluation of Alternatives, Findings and Analysis, and References.

Use the basic outline below to draft your paper. Organize your responses to each question under the following section headings:

  • Evaluation of Alternatives (for Questions 1-3)
  • Findings and Analysis (for Questions 4-5)
  • References (for Question 6)

Using the provided template, write Part 2 of a single-spaced report in which you:

  1. Research the two (2) alternatives (i.e. possible solutions) that you’ve identified in your Part 1 Evaluation of Alternatives section. Record bibliographic information during research.
    1. Example: You might research other organizations that have attempted similar solutions to the problem you have identified and explore the results of those experiments. 
  2. Use what you discover in your research to evaluate each alternative by each of your five (5) criteria.
    1. Example: If your research revealed that four companies similar to yours increased productivity after allowing their workers to telework from home three days per week, you might conclude that one of your suggested alternatives – in this case, the option to telework from home three days per week – satisfies one of your criterion of “Productivity” as a high-potential solution to a problem you’ve identified (of decreased worker morale and productivity at Doe’s Electronics). However, additional research might frustrate a recommendation of this alternative if it is found to fall short of other criteria while a second alternative fares better. For instance, a telework alternative might be found to be too costly to implement; too frustrating for consumers who prefer daily, in-person customer service; or too divergent from the company’s brand, “Always there for you!”
  3. Organize the assignment by your criteria. Explain in narrative form how each of your two (2) alternatives stacks up against your first criterion. Next, explain how each alternative stacks up against your second criterion, etc.
    1. Example: An abbreviated outline of what this longer section might look like based on the above example is below (Note: Only the first two [2] of five [5] required criteria are included to give you a feel for the structure). Your researched findings, represented as circled bullets below, should be explained in two to five (2-5) sentences. Include in-text citations and follow up with References in APA style):

      Evaluation of Alternatives

      • Productivity
        • Alternative A: Telework from home 3 days per week
          • {narrate findings based on research here}
        • Alternative B: Offer two extra Floating Holidays to each employee per year
          • {narrate findings based on research here}
      • Cost
        • Alternative A: Telework from home 3 days per week
          • {narrate findings based on research here}
        • Alternative B: Offer two extra Floating Holidays to each employee per year
          • {narrate findings based on research here}
  4. Briefly summarize in narrative form the major discoveries that emerged from the Evaluation of Alternatives section.
  5. Include a chart like the ones below to illustrate at a glance:

    Figure 1: Alternatives Analyzed by Criteria

    Criteria

    Telework Option

    Floating Holiday Option

    Productivity

    Very high

    Negligible increase

    Cost

    Very high

    Moderate

    Company Image

    Increased

    Negligible increase

    Worker Morale

    Increased

    Negligible increase

    Practicality

    Moderate

    Low

    TOTAL Feasibility* of Alternatives based on Criteria?

    Moderate to High

    Low to Moderate

    *Feasability = Capability of an alternative being carried out with success

  6. Include an APA style (6th edition) References page that documents the two (2) sources (minimum) that you used and cited in-text in your Evaluation of Alternatives section.  Note that both resources may be secondary resources, or you may include one primary source and one secondary source. Remember that both in-text citations and References must be included (to avoid plagiarism) whenever you are directly quoting, summarizing, or paraphrasing researched material.

Your assignment must:

  • Be typed, single spaced, using Times New Roman font (size 12), with one-inch margins on all sides; citations and references must follow APA or school-specific format. Check with your professor for any additional instructions.
  • Include a cover page containing the title of the assignment, your name, the professor’s name, the course title, and the date. The cover page and the reference page are not included in the required assignment page length.

The specific course learning outcomes associated with this assignment are:

  • Support ideas or claims in body paragraphs with clear details, examples, and explanations.
  • Organize ideas logically by using transitional words, phrases, and sentences.
  • Use sentence variety and effective word choice in written communication.
  • Apply writing process strategies to develop formal business reports and / or proposals.
  • Use technology and information resources to research issues related to selected topics.
  • Write clearly and concisely using proper writing mechanics.

should organ donation be made compulsory when obtaining a driving licence?

should organ donation be made compulsory when obtaining a driving licence? 400 hundred words please and it has to be year 12 work standard

HCA 417 Electronic Health Record Electronic Health Record Nomenclatures

Electronic Health Record Nomenclatures

 

In a 250- 300 word post, explain how the EHR nomenclatures differ from other code sets and classification systems in several ways. 

 

Discuss some of the unique features of nomenclatures and how they are used to identify and cross reference and communicate with other systems.

Leadership Style: How leaders Leading in the 21st century / PowerPoint Presentation (2part project)

Assignment 3 Part I: Leadership Style: How Are Leaders Leading in the 21st Century?
Due Week 10 and worth 200 points

 

Choose the CEO of one of the following organizations for this assignment: Google, Zappos, Southwest Airlines, Hewlett Packard, Xerox, W.L. Gore, DuPont, or Procter & Gamble. Use the Internet to investigate the leadership style and effectiveness of the selected CEO.

 

Write a six to eight (6-8) page paper in which you:

 

  1. Describe the leadership style of the CEO.
  2. Analyze the CEO’s leadership style and philosophy, and how the CEO’s leadership style aligns with the culture.
  3. Examine the CEO’s personal and organizational values.
  4. Evaluate how the values of the CEO are likely to influence ethical behavior within the organization.
  5. Determine the CEO’s three (3) greatest strengths and three (3) greatest weaknesses as a leader. Provide a rationale to support your response.
  6. Recommend changes the CEO should consider to improve as a leader in the 21st Century. Provide a rationale to support your response.
  7. Assess how communication and collaboration, and power and politics influence group (i.e., the organization’s) dynamics for the selected organization.
  8. Use at least six (6) quality academic resources in this assignment. Note: Wikipedia and other Websites do not qualify as academic resources.

 

Your assignment must follow these formatting requirements:

 

  • Be typed, double spaced, using Times New Roman font (size 12), with one-inch margins on all sides; citations and references must follow APA or school-specific format. Check with your professor for any additional instructions.
  • Include a cover page containing the title of the assignment, the student’s name, the professor’s name, the course title, and the date. The cover page and the reference page are not included in the required assignment page length.

 

The specific course learning outcomes associated with this assignment are:

 

  • Analyze the formation and dynamics of group behavior and work teams, including the application of power in groups.
  • Outline various individual and group decision-making processes and key factors affecting these processes, including ethical considerations.
  • Examine the communication process, the primary conflict levels, and the process for negotiating resolutions within organizations.
  • Examine how power and influence empower and affect office politics, political interpretations, and political behavior.
  • Use technology and information resources to research issues in organizational behavior.
  • Write clearly and concisely about organizational behavior using proper writing mechanics.

 

Click here to view the grading rubric.

 

Students, please view the “Submit a Clickable Rubric Assignment” in the Student Center.

 

 

 

Instructors, training on how to grade is within the Instructor Center.

 

 

 

Assignment 3 Part II: PowerPoint Presentation

 

 

 

Due Week 10 and worth 100 points

 

 

 

Create a twelve (12) to fifteen (15) slide PowerPoint in which you:

 

 

 

  1. Illustrate the concepts from your written report in Part I of this assignment.
  2. Create bulleted speaking notes for your presentation in the Notes section of the PowerPoint.
  3. Use a professional technically written style to graphically convey the information.

 

 

 

Your assignment must follow these formatting requirements:

 

 

 

  • Include a cover slide containing the title of the assignment, the student’s name, the professor’s name, the course title, and the date. The cover slide and the reference slide are not included in the required assignment page length. Each slide should contain no more than five (5) bullets per slide. Speaker notes for each slide must be included. Speaker notes should be at least 150 words.

 

 

 

The specific course learning outcomes associated with this assignment are:

 

 

 

  • Analyze the formation and dynamics of group behavior and work teams, including the application of power in groups.
  • Outline various individual and group decision-making processes and key factors affecting these processes, including ethical considerations.
  • Examine the communication process, the primary conflict levels, and the process for negotiating resolutions within organizations.
  • Examine how power and influence empower and affect office politics, political interpretations, and political behavior.
  • Use technology and information resources to research issues in organizational behavior.
  • Write clearly and concisely about organizational behavior using proper writing mechanics.

Due by 6 pm est Creative writer this is for you LAW OFFICE MANAGEMENT

Identify the pros and cons of the cloud when using this type of technology to communicate with others within a law office

1. As we know, the cloud can be used in a variety of ways to support businesses, including law firms for data storage, document sharing, communications, and much more. These appealing uses for the cloud also come with concerns. Use this next assignment to better understand the cloud and the views and opinions others have about it.

 

Read the instructions below, and then complete your assignment:

 

The law firm that you work for are thinking about moving more business and communication capabilities to the cloud over the next year.

 

  • Your supervisor would like for you to write a 1-2 page proposal outlining the advantages and disadvantages of this growing technology and how they apply to the law firm.
  • You are also to include the thoughts from technology professionals about where they feel this technology is headed in the future.2.

2. Paralegals are often responsible for drafting memos to the attorneys regarding updated processes of the law office. Use this assignment to understand technology processes in the law office and solutions to potential technology issues.

 

As a paralegal in a law office, draft a 1-2 page correspondence to all of your attorneys, regarding the updated processes for electronic documentation. This will be used as a job aide for you and your attorneys as they correspond with clients. Your document must include the mention of retention policies for electronic data, methods for storing, litigation holds, the duty to preserve, and spoliation. Give details and challenges of each.

 

 

3. Each phase of the EDRM requires resources and methods for completion.

As a paralegal you must create a 1-2 page document listing out each phase and supplying additional resources and methods to complete each phase (e.g., The Identification phase locates potential sources of ESI. What are some of the sources you could use? The plaintiff’s computer, the online banking system, etc.). Use this assignment to think of technology resources for legal research, people, and methods for handling each phase of the EDRM process.

BUS430: Assignment 2: Inventory Management

PLEASE NO PLAGRISMA AND NO COPY WORK FROM NO ONE ELSE….ORIGINAL WORK PLEASE….

 

Research two (2) manufacturing or two (2) service companies that manage inventory and complete this assignment.
Write a six to eight (6-8) page paper in which you:
  1. Determine the types of inventories these companies currently manage and describe their essential inventory characteristics.
  2. Analyze how each of their goods and service design concepts are integrated. 
  3. Evaluate the role their inventory plays in the company’s performance, operational efficiency, and customer satisfaction.
  4. Compare and contrast the four (4) different types of layouts found with each company; explain the importance of the layouts to the company’s manufacturing or service operations.
  5. Determine at least two (2) metrics to evaluate supply chain performance of the companies; suggest improvements to the design and operations of their supply chains based on those metrics.
  6. Suggest ways to improve the inventory management for each of the companies without affecting operations and the customer benefit package. Provide a rationale to support the suggestion.
  7. Use at least three (3) quality resources in this assignment. Note: Wikipedia and similar Websites do not qualify as quality resources.
Your assignment must follow these formatting requirements:
  • Be typed, double spaced, using Times New Roman font (size 12), with one-inch margins on all sides; citations and references must follow APA or school-specific format. Check with your professor for any additional instructions.
  • Include a cover page containing the title of the assignment, the student’s name, the professor’s name, the course title, and the date. The cover page and the reference page are not included in the required assignment page length. 
The specific course learning outcomes associated with this assignment are:
  • Evaluate the processes used in designing and producing goods and services.
  • Determine four layout patterns and when they should be used. 
  • Utilize the concept of supply chain management.
  • Employ the concept of capacity management. 
  • Evaluate the management of inventories and resources.
  • Use technology and information resources to research issues in operations management. 
  • Write clearly and concisely about operations management using proper writing mechanics.

Write a two to four (2-4) page paper in which you

The Information Technology Infrastructure Library (ITIL) is a set of concepts and techniques for managing IT infrastructure, development, and operations. ITIL offers eight sets of management procedures: service delivery, service support, service management, ICT infrastructure management, software asset management, business perspective, security management, and application management. Disney began adopting ITIL best practices in the mid-2000s. Read “ Disney’s ITIL® Journey”, located at http://www.best-management-practice.com/gempdf/disney_itil_journey.pdf.

Write a two to four (2-4) page paper in which you:

  1. Describe the reasons for Disney’s adoption of ITIL.  
  2. Examine the results that were attained by Disney.
  3. Compare and contrast ITIL, Committee of Sponsoring Organizations of the Treadway Commission (COSO), and Control Objectives for Information and Related Technology (COBIT) frameworks with regard to whether Disney would have attained the same results with the COSO or COBIT framework.
  4. Examine how Disney implemented auditing and compliance in its enterprise architecture.
  5. Use at least three (3) quality resources in this assignment. Note: Wikipedia and similar Websites do not qualify as quality resources. 

Your assignment must follow these formatting requirements:

  • Be typed, double spaced, using Times New Roman font (size 12), with one-inch margins on all sides; citations and references must follow APA or school-specific format. Check with your professor for any additional instructions.
  • Include a cover page containing the title of the assignment, the student’s name, the professor’s name, the course title, and the date. The cover page and the reference page are not included in the required assignment page length.

The specific course learning outcomes associated with this assignment are:

  • Explain the role of audit and compliance in enterprise architecture.

Decision Making Gone Away

 Decision Making Gone Awry

Sometimes social influences and societal pressures can influence decision making for the better and sometimes for the worse. In addition to these pressures, there are risks that need to be evaluated and measured when making decisions. In this assignment, you will reflect on decisions you made using social influence, persuasion, and risk taking that went awry.

Examine a time when you were involved in decision making that went awry as a result of protocols, social norms, or persuasive techniques. If you do not want to use an example from your business or personal experience, you can select a journal article on which you can base your assignment. Here are some key words to help you find an article for this assignment:

  • Decision making
  • Risk taking
  • Persuasion
  • Social heuristics

Write a 3–5-page paper in Word format that addresses the following:

  • Describe a decision-making scenario using your business experience, personal decision making or cited journal article; include an example of the decision-making process, describe the risk, and whether persuasion was used. What were the social heuristics?
  • Explain the incentives in this scenario. Were they effective?
  • Identify the risks and the potential decision biases in your scenario. Propose the corrective steps that should have been taken to overcome these biases. If a risk assessment was conducted how did this affect the decision-making process?
  • Analyze your scenario for what happened in terms of social heuristics. Explain how decisions were made and the social factors that shaped the decision-making environment.
  • Discuss the greatest challenges to sound decision-making in your scenario.
  • Critique the decision-making process used by the sponsor(s) and leader(s) of the decision. Identify the mistakes made by the sponsor(s), leader(s), and team members or others impacted by the decision during the implementation of the decision. 

 

 
 
Assignment 2 Grading Criteria
Maximum Points
Thoroughly evaluated the decision-making situation, the social heuristics involved, and the decisions they made including proposing corrective steps that should have been taken.
40
Articulated the greatest challenges to sound decision making in your scenario. Included decision biases and risk assessment.
20
Critiqued the decision process used by the sponsor(s) and leader(s) of the decision. Identified the mistakes made by the sponsor(s), leader(s), and team members or others impacted by the decision during the implementation of the decision.
20
Wrote in a clear, concise, and organized manner; demonstrated ethical scholarship in accurate representation and attribution of sources; displayed accurate spelling, grammar, and punctuation.
20
Total:
100