Identify if your data contains personal data. Personal data means any information on a natural person and on their personal characteristics or personal circumstances, where these are identifiable as concerning them or the members of their family or household.

SOFTWARE DEVELOPMENT IN THE CLOUD, ITS IMPACT AND SECURITY CHALLENGES

This paper was written by writer #39135 who did a very good job, however there is update that is needed on the document from my professor to fine tune it. Hence I would prefer to have this update done by same writer.

The requested update are as follows:

– chapter 4.8 Conclusion is about research methods, but there should be own chapter in chapter 2 about research methods

– there should be descriptions about ethical review and data protection & management (Familiarise yourself with data protection and the processing of personal data. In the thesis, data protection concerns the student preparing the thesis, the commissioner, potential research subjects and the written thesis complete with its research data.

Identify if your data contains personal data. Personal data means any information on a natural person and on their personal characteristics or personal circumstances, where these are identifiable as concerning them or the members of their family or household.
All types of data that can be used to directly identify a natural person, but also data that can be used to identify a person indirectly (e.g. photos and voice recordings).
If you process personal data, you must have a privacy statement. Remove any personal identifiers, i.e. anonymise the material as soon as it can be reasonably analysed without identifiers. See the data protection page in the intranet for more detailed instructions.)

Explain the critical issues that face a water corporation when implementing ERP systems solutions. What is the proposed solution for the implementation issues of ERP systems in water corporations?

Case study Report

Each Case study Report will be evaluated according to the marking criteria in each question section.

Presentation

Students (Group) must present their Case study (F2F or Virtual) per week12. (Considered as last week before the final review)

Presentation schedule with date and allocated timing will be shared with the students via Blackboard before the end of Week 11.

Implementing an ERP system in a Water Corporation

A water corporation experienced some issues related to implementing ERP systems. The following link takes you to the full report about it.

Article Link

Requirements:

1.You need to read the report carefully and answer the case study questions using your own words.

2.Copy and paste are prohibited, and you can paraphrase the information you need.

Q1- Explain the critical issues that face a water corporation when implementing ERP systems solutions.

Q2- what is the proposed solution for the implementation issues of ERP systems in water corporations?

Q3-List the key advantages gained by the water corporation from introducing the ERP system solution

 

Analyze the key problems of the existing system used by the company. Discuss the Information Systems used within the company.

Table of Contents

Make sure the table of contents contains and corresponds to the headings in the text, figures, and tables.

1- Analysis of Existing System (ch11)

Analyze the key problems of the existing system used by the company.

– Also, discuss the Information Systems used within the company for example:

  • Transaction processing systems (TPS)
  • Enterprise Resource Planning (ERP) Systems
  • Functional Area Information Systems
  • Business intelligence
  • DSS (Decision support systems)

(You can discuss any points that you learned in this course and it’s related to your selected organization)

Notes:

  • (For each point two systems are mentioned)
  • An explanation of the system, not just an example.
  • An example of the system used by Amazon Such as (Logistics system) for tracking and inventory management.

2- System Evaluation.

– Evaluate the current system that the company use (your chosen company) with one of the following options :

  • Success
  • Partial failure/partial success
  • Total failure

(Then, State the reasons for your choice )

3- Suggestions for the company

Design or choose a system to help the company solve its main problems. State the following: like Siri or iCloud or ios

  • The new system name
  • Its features
  • Problems that will be solved

(If the system that the company uses is successful and does not need to be changed, you can mention that, mention its features, and mention the problems that it solved or prevented from happening.

(You can discuss any points that you learned in this course and it’s related to your selected organization)

4- Conclusion.

Summarize your report

5- References.

Use APA referencing style format

 

Using your knowledge of NodeJS and ExpressJS and the Web App Template provided, complete the Favourite Book List web app that you will share on GitHub and deploy to Heroku.

Html / CSS

Overview: Using your knowledge of NodeJS and ExpressJS and the Web App Template provided, complete the Favourite Book List web app that you will share on GitHub and deploy to Heroku (or another cloud provider). Your web app already includes basic navigation controls, a Landing Page, a BookList page and a BookDetails page. Your task is to complete the code that is missing from the routing files and the Books List page so that a user can Add, Delete and Edit any Book item from the Database

Project Setup:

  • You will need to create a new Mongo Database on MongoDB Atlas. You will need to change the URI variable in the db config file (config/db.js) to point MongoDB Atlas.
  • You will need to add some example Book data in the database.

Instructions:

  1. The BooksList page (views/books/index.ejs) already lists your favourite books. Your job is to fix the Add Button, and insert the appropriate code for the Edit and Delete Buttons (2 Marks: GUI, 13 Marks: Functionality):
  2. Fix the Add Button on this page so that it links to the BookDetails page (views/books/details.ejs). Hint: insert the correct route in the href attribute. (3 Mark: Functionality).
  3. Add an Edit Button to each row of the existing Table (the insertion point has been marked for you). Ensure that when the user clicks on the Edit button, they are linked to the BookDetails page and the _id of the book they wish to edit is passed to that page via the URL. Hint: the href attribute requires a reference to the _id of the book being edited (1 Mark: GUI, 6 Marks: Functionality).
  4. Add a Delete Button to each row of the existing Table (the insertion point has been marked for you). Ensure that when the user clicks on the Delete button, that the _id of the book to be deleted is passed to the router. Hint: the href attribute requires both a link to the delete route and a reference to the _id of the book being edited (1 Mark: GUI, 4 Marks: Functionality).
  5. The Books Routing File (routes/books.js) already has a route working to find all the books in the books collection and render your BooksList page. Your task for this section is to complete the logic for each of the other routes to render the book details page when the Add or Edit Buttons are clicked, process a request to Add or Edit a Book, and process a request to Delete a book (63 Marks: Functionality).:
  6. Complete the get(‘/add’) router logic that renders the book details page (views/books/details.ejs). The form on the book details page will initially be blank. You must pass an appropriate value for the title property and blank value for the books property. (10 Marks: Functionality).
  7. Complete the post(‘/add’) router logic that processes the insertion of a new book into the database. You need to instantiate an object of the book model (excluding the _id property) and pass this object to the create method of the book model to add a new book to the database. Hint: the values for the book object will come from the name attributes of each field of the book details page. Redirect the user back to the BookList page (‘/books’) when the insertion is completed. (10 Marks: Functionality).
  8. Complete the get(‘/:id’) router logic that renders the book details page (views/books/details.ejs) and uses the id from the URL to select the book to document to be updated. Declare an id variable and set its value to the id property of the request object. Pass this id to the book model’s findById method to render the book details view. You must set an appropriate title property value and set the books property to the book that was returned from the database as you render the view. (15 Marks: Functionality).
  9. Complete the post(‘/:id’) router logic that processes the update request of an existing book by using its id property. Declare an id variable and set its value to the id property of the request object. You need to instantiate an object of the book model (including the _id property) and pass this object to the update method of the book model to edit an existing book in the database. Hint: the values for the book object will come from the name attributes of each field of the book details page. Redirect the user back to the BookList page (‘/books’) when the update is completed. (20 Marks: Functionality).
  10. Complete the get(‘/delete/:id’) router logic that processes the user’s delete request and removes an existing book from database by using its id property. Declare an id variable and set its value to the id property of the request object. Pass the id to the book model’s remove method. Redirect the user back to the BookList page (‘/books’) when the removal is completed. (8 Marks: Functionality).

Include Internal Documentation for your site (4 Marks: Internal Documentation):

  1. Ensure you include a comment header for your JavaScript file that indicate: The File name, Author’s name and Web App name (1 Marks: Internal Documentation).
  2. Ensure you include a section header for any JavaScript functions (1 Marks: Internal Documentation)
  3. Ensure all your code uses contextual variable names that help make the files humanreadable (1 Marks: Internal Documentation).
  4. Ensure you include inline comments that describe your GUI Design and Functionality. Note: Please avoid “over-commenting” (1 Marks: Internal Documentation)

 

Do you think their choice is the best or most cost effective strategy? Why or why not? For the strategy that you support, explain how you would move forward to start implementing your strategy?

 Warehouse ownership arrangements

Companies have a choice of warehouse ownership arrangements. Deciding to use private, public, or contracted warehouse space or a network deployment strategy is a big choice for a company. Pick any company and examine how they choose to store their inventory.

Do you think their choice is the best or most cost effective strategy?

Why or why not? For the strategy that you support, explain how you would move forward to start implementing your strategy? Remember, a strategy is only as good as it is once it is implemented. Please explain.

Here is the link for additation information: https://www.inboundlogistics.com/cms/article/look-for-more-than-just-price-when-choosing-a-warehouse-location/

https://auditlogistics.com/index.php/Pages/selecting_a_warehouse_101

Write around 300 words

 

What is the genetic basis of the disease? What is the molecular basis of the disease? What are the physiologic implications of the disease?

Renal Physiology: Nephrogenic Diabetes Insipidus

Objectives:

  1. Understand the complexity and physiological basis of diseases of genetic origin.
  2. Explore and understand accepted treatment options or future treatment strategies.
  3. Learn to use literature searches.
  4. Develop writing skills to clearly and concisely explain the pathophysiology of disease.

Task:

You will write an essay (1000 words) addressing each of the following:

  • What is the genetic basis of the disease?
  • What is the molecular basis of the disease? (What is abnormal at the cellular, biochemical, or molecular level?)
  • What are the physiologic implications of the disease? (What is abnormal about the physiology of people with this disease?)
  • What are the current treatment options or the development strategies for therapy?

 

Select at least two Modems & at least three Routers to create at least 6 combinations. Select a set of features that are important for YOU. Create a Pugh Matrix to help you decide which combination your small business – or household – should choose based on your needs. Why are we doing this?

Assignment #3 – Concept Selection (Pugh Matrix)

A Pugh matrix is mean to help structure and represent an evaluation procedure to help in decision making and weighing possible alternatives. While it is not meant to be a an Automatic decision making process, it can be extremely beneficial in helping to choose possible alternatives that should be considered. What will we do?

Your small business (or your household) needs a new Wireless internet system (e.g. Modem, Wireless Router, etc.). Select at least two Modems & at least three Routers to create at least 6 combinations. Select a set of features that are important for YOU. Create a Pugh Matrix to help you decide which combination your small business – or household – should choose based on your needs. Why are we doing this?

Pugh matrices, invented by Stuart Pugh, are qualitative technique used to rank the multi-dimensional options of an option set. It is frequently used in engineering for making design decisions. The advantage of the decision-making matrix is that it encourages self-reflection amongst the members of a design team to analyze each candidate with a minimized bias (for team members can be biased towards certain designs, such as their own).

Learning Objectives

This assignment makes use of multiple course objectives

  • Describe Systems Engineering Standards and Best Practices
  • Structure key steps in the SE processes from stakeholder analysis to transition of systems to operations

 

Who is typically part of a project team? What are tips for managing a project and team dynamics? What is the relationship between stakeholders and the extended project management team?

Chapter 4 Project Team Members

Initial Postings: Read and reflect on the assigned readings for the week. Then post what you thought was the most important concept(s), method(s), term(s), and/or any other thing that you felt was worthy of your understanding in each assigned textbook chapter.Your initial post should be based upon the assigned reading for the week, so the textbook should be a source listed in your reference section and cited within the body of the text. Other sources are not required but feel free to use them if they aid in your discussion.

Also, provide a graduate-level response to each of the following questions:

  1. Who is typically part of a project team? What are tips for managing a project and team dynamics?

[Your post must be substantive and demonstrate insight gained from the course material. Postings must be in the student’s own words – do not provide quotes!]

[Your initial post should be at least 450+ words and in APA format (including Times New Roman with font size 12 and double spaced). Post the actual body of your paper in the discussion thread then attach a Word version of the paper for APA review]

2)2page in length

What is the relationship between stakeholders and the extended project management team?

 

Determine the factors that must be considered and observed throughout the work breakdown structure (WBS) development process, and explain why.

Planning a Software Development Project

This assignment consists of two sections: a written project plan, and a project plan that is created using MS Project. You must submit both sections as separate files for the completion of this assignment. Label each file name according to the section of the assignment it is written for.

Scenario
Imagine that you have been hired as a project manager assisting in the development of an iOS application and cloud-based solution that is designed to streamline your organization’s delivery operation. As the project manager, you are to manage the development and release of the mobile client platform in the cloud-based infrastructure that will use GPS to track the shipment and delivery of goods in airplanes across the United States.

The iOS mobile client will have three modules consisting of a search customer screen, search address screen, and confirm delivery screen. Programmers have reviewed the requirements and estimate that each module will take one programmer 300 hours to complete.

In addition to delivering the iOS mobile application, your project will require upgrading the internal network and application infrastructure to a cloud-based model to support the new iOS mobile platform. This effort will require your team to procure network appliances to optimize the security factors of the cloud-based platform.

One last component of the project scope is to provide training to operation support staff and 30 cargo airplane pilots staffed across four regions of the United States. Your project team consists of three programmers, a technical writer, three technical trainers, two network engineers, and one system administrator.

Instructions
Section 1: Written Project Plan
Write a 4–6-page paper in which you:

Determine the factors that must be considered and observed throughout the work breakdown structure (WBS) development process, and explain why.
Create a work breakdown structure for the scope of the project. Note: The WBS must be in indented format as shown in Figure 5-3 in Chapter 5 of the text.
Analyze the various activities required for this project and provide an estimate of duration for each activity based on the number of resources available for the project. Include assumptions and basis for each estimate.
Recommend the estimation technique that should be used for each activity (that is, PERT, Delphi, analogy, expert judgment, or rule of thumb).
Determine the major milestones that the project will encounter.
Describe the logical sequence of planned activities required to achieve the project and analyze how monitoring durations on the critical path influence the success of the project.
Section 1 of your assignment must follow these formatting requirements:

This course requires the use of Strayer Writing Standards. For assistance and information, please refer to the Strayer Writing Standards link in the left-hand menu of your course. Check with your professor for any additional instructions.

Section 2: Gantt Chart
Use Microsoft Project (or its equivalent) to create a Gantt chart in which you:

Document all resources that would be required for this project within the Resource Sheet form.
List the activities required for the project. Break down the activities by the major milestones.
Enter the estimate of required durations, dependencies, and assign resources for each activity.
Generate a Gantt chart that shows all of the project deliverables, from beginning to end.
Section 2 of your assignment must follow these formatting requirements:

Include charts or diagrams created in Excel, Visio, MS Project, or one of their equivalents such as Open Project, Dia, and OpenOffice. The completed diagrams/charts must be imported into a Word document

What kind of consanants is your name made up of? What sort of feeling does Oliver say those kinds of consonants give a word? Do you find that to be true about your name?

Answer Questions based on reading.

A. What is the difference between a rock and a stone?

  • Write a sentence that makes use of alliteration
  • Write a sentence that makes use of consonance.
  • Write a sentence that makes use of assonance.

Think of four words whose meaning reflects their sound.
Think about the sounds that compose your name.

Read over Mary Oliver’s description of various kinds of consonants (semi-vowels, mutes, aspirates, liquids).

  • What kind of consanants is your name made up of?
  • What sort of feeling does Oliver say those kinds of consonants give a word?
  • Do you find that to be true about your name?

B.What is a true rhyme or a “masculine” rhyme? Write an example of two lines that end in a masculine rhyme.

  • What is a off-rhyme or a slant-rhyme? Write an example of two lines that end with an off rhyme.
  • What is a “feminine” rhyme? Write an example of two lines that end with a “feminine” rhyme.

Words ending in what kind of sound create the most emphatic rhymes.

  • What is an enjambed line? Can you find an example of enjambment in Jack Gilbert’s Hunger? How about in You Begin? How about in Motown Crown?
  • When and why did free-verse come into fashion?
  • What’s a sentence in iambic pentameter?

Of the poems about poetry in the reader so far, which speaks to you most? Can you spot any of the above-mentioned poetic devices in your favorite of these poem?

Extra Credit: Can you write a sentence in iambic pentameter? Can you scan your first and last name?

Must use support from Mary Oliver “A Poetry Handbook”