rewrite final paper

please read and understand the attached file and then re write it in your own words. (do not use paraphrase tools)

also there are tables in the document. make new tables please

formative assessment boeing case

– Please read the attached case study (BOEING CASE) carefully and provide the answers/requirements needed
in the given Case.

1. Discuss the 2 types of knowledge being captured, the capturing techniques being used, and how are they being used in the business operations.

The solution is more than Ten line

2. Discuss some of the benefits the organization managed to achieve as a result of the knowledge management initiative.

The solution is more than Ten line

3. In your own words, provide a brief summary of the case including an introduction of the organization,
the reasoning for knowledge management initiative, some relevant features of the initiative, and the outcomes and
benefits of the knowledge management initiative to the organization.

The solution is more than Ten line

Plagiarism please its zero or 3%

assignment 1844

This assignment is designed to prepare you for the final paper due at the end of the course. For your final paper, you will examine a specific psychological disorder along with methods used in biopsychology to investigate the cause of the disorder and to treat the disorder. The disorder that you choose is up to you but it should be something studied in the field of biopsychology. You will find research studies that examine different methodological approaches of biopsychology to study and treat the chosen disorder. In your final paper, you will describe the disorder and methods used to research and treat the disorder, as well as review and analyze the methods based on a review of the literature (Note: It is important that you choose methodological approaches that you understand and are comfortable discussing in detail. For example, you should not choose gene knockout technology in the study of alcohol abuse if you are weak in the area of genetics and molecular genetics.)

In this assignment for Week Two, you should prepare for the final paper by providing a short overview of the chosen disorder and methods used to study it and treat it, along with at least five references that will be used in the paper, presenting them using an annotated bibliography. The overview that you provide in this assignment should include the thesis or research question that you will be focusing on in your final paper. This week’s paper should be 3-5 pages in length, excluding title page and reference section.

write one page and half about three of the concepts from those below and follow the instructions

A. Describe three significant management concepts you have learned over the semester;

B. Explain how each concept applies to a specific current event.

C. What might you, as a business professional, do differently in the future because of what you have learned.

These concepts are

social entrepreneurship,

Change Agents,

Organizational Development,

Resistance to Change:

quot in him christ all things are faced by the one god who absolutely dislocates and no less absolutely reorders quot

Focus on the last sentence of the quotation: “In him [Christ], all things are faced by the one [God] who absolutely dislocates and no less absolutely reorders.”

This essay should be written from a Christian perspective and should be about 500 words in length.

interdisciplinary plan proposal 2

All instructions are attached. See Rubric for grading (distinguished column) This should build from assessment 2 the interview.

python assignment you need to access for spyder to do the assignment

Task

We are going to create some simple rules for translating normal English into Gibberish. A common rule is to add sounds to each syllable, but since syllables are difficult to detect in a simple program, we’ll use a rule of thumb: every vowel denotes a new syllable. Since we are adding a Gibberish syllable to each syllable in the original words, we must look for the vowels.

To make things more unique, we will have two different Gibberish syllables to add. The first Gibberish syllable will be added to the first syllable in every word, and a second Gibberish syllable will be added to each additional syllable. For example, if our two Gibberish syllables were “ib” and “ag”, the word “program” would translate to “pribogragam.”

In some versions of Gibberish, the added syllable depends on the vowels in a word. For example, if we specify “*b” that means we use the vowel in the word as part of the syllable: e.g. “dog” would become “dobog” (inserting “ob” where the “*” is replaced by the vowel “o”) and “cat” would become “cabat” (inserting “ab” where “a” is used). Note that the “*” can only appear at the beginning of the syllable (to make your programming easier).

After the Gibberish syllables are specified, prompt the user for the word to translate. As you process the word, make sure you keep track of two things. First, if the current letter is a vowel, add a Gibberish syllable only if the previous letter was not also a vowel. This rule allows us to approximate syllables: translating “weird” with the Gibberish syllable “ib” should become “wibeird”, not “wibeibird”. Second, if we’ve already added a Gibberish syllable to the current word, add the secondary syllable to the remaining vowels. How can you use Booleans to handle these rules?

Finally, print the Gibberish word. Afterwards, ask the user if they want to play again, and make sure their response is an acceptable answer (“yes”/“no”, “y”/“n”). Make sure to check the validity for all of your user inputs throughout the program. Don’t let bad input create errors.

Your program will:

  1. Print a message explaining the game.
  2. Prompt for two Gibberish syllables (indicate the allowed wildcard character “*”).
  3. Prompt for a word to translate.
  4. Process the word and add the syllables where appropriate.
  5. Print the final word, and ask if the user wants to play again.
    • a)First solve the program using a single Gibberish syllable, without checking for multiple vowels in a row or using the wildcard (“*”). This means that “weird” with the “ib” syllable will become “wibeibird” (that will not be correct in the final version, but good enough for starting your program: simplify!).
    • b)You will need to decide how you will check for vowels. Good possibilities are string indexing or using a Boolean, but use a method that works best with your own program. When you check for vowels it may be handy to create a string vowels = “aeiouAEIOU” and use in vowels to check if a character is a vowel (is the character in the string named vowels).
    • c)In this simplified version assume that the Gibberish syllable is exactly two characters long.
    • d)For your resulting word start with an empty string and add characters onto it as you process characters from the original word.

Notes and Hints:

You should start with this program, as with all programs, by breaking the program down into parts.

  1. Getting started: Simplify!
  1. Now go back and add error checking to make sure the user is entering valid data and that the word entered actually has a usable vowel to make Gibberish out of. Provide user instructions both when starting the program and if you get invalid input (numbers or punctuation in the word). Try to anticipate every possible error a user could make including “kitty at the keyboard.”
  2. After that, add the second Gibberish syllable and allow Gibberish syllables longer than two characters.
  • a)A Boolean to keep track of whether you have already made a substitution for the first Gibberish syllable will be useful, e.g. done_with_first_vowel = False
  • b)I found slicing useful for longer Gibberish syllables.
  1. Add the wildcard ability after you’ve completed the above steps.
  1. Finally, add handling of the special case of consecutive vowels. For most people this is the hardest part of the program. It doesn’t add much Python code, but until you see it the logic can be elusive. Try to map it out with a flowchart and pseudocode first. I used a variable named previous_character that held the previous character so when I was looking at a new character I could check whether the previous character had been a vowel.

The string library has a couple of useful tools. If you add import string at the beginning of your program, string.digits and string.ascii_letters are strings that contain all the digits (0 through 9) and all the letters (uppercase and lowercase).

Criteria

Deliverables

  1. Code: proj05.py – your source code solution (remember to include the date, project number and comments in this file). Be sure to use “proj05.py” for the file name. Be sure to add comments to your code to help me understand it.
  2. Pseudocode: pseudo05.doc – your pseudocode solution to the problem in a Microsoft Word file. Be sure to use proper indentation and “program” in English (or your first language of choice with an English translation).
  3. Flowchart: flow05-partX.jpg – your flowchart solution in an image file format (jpg, png, etc.) Be sure to use the proper shapes for each type of statement in your program. Each separate function created should have its own flow image (numbered as flow05-part1.jpg, flow05-part2.jpg, etc.).

scrum project part 2 writing a business case

Throughout this course, you will be managing a fictitious project of your choice using SCRUM Agile project management techniques. You will use theMS Excel and Word to help with your Agile project management. This project will involve a series of steps over Weeks 1-5, and will culminate in a final evaluation in Week 6.

Roadmap
Here is a summary of the project milestones and the weeks in which they are due:

  • Week 1 – Setup a Visual Studio Online (VSO) account
  • Week 2 – Select Project and Write Business Case (business case must include at least 2-3 business milestones)
  • Week 3 – Product Backlog (must include at least 3 features, 10 backlog items (e.g., user stories). Also note: there is only one Scrum development team, made of 3 developers.)
  • Week 4 – Release Planning (product must have at least 3 releases)
  • Week 5 – Sprint Execution (project must have at least 4 sprints)
  • Week 6 – Final Video

Your Tasks for This Week
To complete your task for this week, start by selecting a project that is robust enough to fulfill the requirements in Weeks 2-5, noted above. Next, write a business case for your project, incorporating the same level of detail as the Level 0 business case in your textbook. Your business case be written as a paper with headings, and should include:

  • Two or three business milestones
  • Root cause of the business problem
  • Reason for solving the business problem
  • Scope of the project
  • Risk associated with the project
  • Project Planning (cost and schedule)
  • Project Balance sheet

The assignment:

  • Must be 750-1500 words (3-5 pages) in length (not including title and references pages) and formatted according to APA style as outlined in the Ashford Writing Center (Links to an external site.).
  • Must include a separate title page with the following:
    • Title of paper
    • Student’s name
    • Course name and number
    • Instructor’s name
    • Date submitted
  • Must include a business case that is written as a paper with contextual (Level One) headings
  • Business case must include the following:
    • Two or three business milestones
    • Root cause of the business problem
    • Reason for solving the business problem
    • Scope of the project
    • Risk associated with the project
    • Project Planning (cost and schedule)
    • Project Balance sheet
  • Must describe the steps you took to develop your business case
  • Must explain your approach to this assignment and the decisions you made
  • Must include a reflection on this learning experience and lessons learned

Note:

Hi Class,

For week 2 this assignment can be developed in MS Word. You can if you want put the the two or three milestones in MS Excel but this is optional.

For weeks 3, 4, and 5 as it appears that the VSO videos are outdated we are going to use MS Excel instead of VSO. Thus, wherever you see VSO in the assignment please use MS Excel. Now given that you are using MS Excel you are free to develop your own format and improve it as you see fit. You do not need to use the MS Excel project template. Just use the plain Excel spreadsheets. In this way, the idea is that you can apply Scrum techniques yet not be tied to a certain Scrum platform but design a format that fits your needs. The key is to enable you to get exposure to an agile technique that is often used and encourage innovation.

Now you may also view the VSO videos to obtain some ideas. However, viewing these videos will be optional.

Where submission of VSO screen shots are requested please submit the Excel worksheets you developed instead.

understanding the manager s role and challenges

Please view attached document. If you have any questions, please ask!

Thank you 🙂

please show me the step to each problem thank you those are calculus iii questions

Hi, please write the step as clear as possible, You don’t need to answer the Problem 8.

Also, the questions are all talking about Calculus III, you can use all the knowledge from Calculus I – Calculus III, and linear Algebra. But please don’t use any other things. Thank you.