Reflection paper

At the end of this week, students will be able to:

  • Evaluate the value of this course by posting feedback in a discussion forum
  • Submit a reflection paper to articulate lessons learned in terms of preparing forcareer success.

Submit final Reflection Paper (4 – 5 pages) – in your paper, explain how you use the knowledge gained in this course to prepare for on-the-job success

You have completed item “a” for each section in the attached outline. Now proceed to complete items ‘b’ and ‘c’ for each section.  

Week 7 Discussion Forum: The Future of the Workplace

After watching the video below, post a disussion detailing your response to what was discussed in either or both videos.

Video Link: https://www.youtube.com/watch?v=1PyUbl39dI0

Help 1

 

Create a quality digital presentation with no more than 12 slides (including detailed speaker notes for all) that describes the dynamic system, the Causal loop diagram, and the rationale for each assumption. Each presentation will be turned in individually and should include the following: A clear definition/introduction of the dynamic system

Causal loop diagram modeling the relationships between factors in the dynamic system.

Dynamic system model that is appropriate for the system

Use MS Excel to construct and run a model simulation. The simulation will require finding relevant data to be used in the model.

Three output graphs that display three possible outcomes from the system. For example: equilibrium and imbalance that favors one of the factors over the other.

A description of the limitations of your model, and how you could improve it

Explain why this clear explanation of the model and assumptions is needed to provide an ethical representation of the data

Please follow the instructions in the attachment to complete it 

Creating policies – IT Strategy and policy – No plagiarism

 Policies should always state required actions and cover mandatory compliance and disciplinary action as well as desired results. Please create the following policies:

  • Acceptable Use
  • Access Control
  • Mobile Device Usage
  • Change Management
  • Information Security
  • Remote Access
  • Email/Communication
  • Data Management
  • Documentation
  • Disaster Recovery

The template should be:

1.PURPOSE

This document establishes a policy for . . .

2.BACKGROUND

This document was developed because . . .

3.SCOPE

This policy applies to the use of . . .

4.OPERATIONAL POLICY

4.1. Section 1

4.2. Section 2

4.3. Section 3

4.4. Section 4

5.ROLES AND RESPONSIBILITIES

The following entities have responsibilities related to the implementation of this policy:

6.APPLICABLE LAWS/GUIDANCE

7.EFFECTIVE DATES

This policy becomes effective on the date that [xxx], Chief Information Officer (CIO), signs it and remains in effect until officially superseded or canceled by the CIO.

8.INFORMATION AND ASSISTANCE

Contact the . . . for further information regarding this policy.

9.APPROVED

[Director of Information Security Policies] Date of Issuance

10.ASSOCIATED RESOURCES

This policy is augmented by . . .

assignment

 Answer each these questions in a paragraph with at least five sentences. Provide a citation for each answer.

  1. Give an example from the book where insufficient testing was a factor in a program error or system failure.
  2. What was one cause in the delay in the completing of the Denver Airport.
  3. Why didn’t the healthcare.gov website work at first?
  4. What is one characteristic of high reliability organizations?
  5. Describe the potential risks of alert fatigue in EHR systems.
  6. What were 2 common factors in both the Therac-25 case and the space shuttle disaster.
  7. What does design for failure mean?

clouding computing

Functional Requirements

1.Status inquiry•By  providing  package  number.  Users  of  this  system  will  be  able  to  inquire  the  detail  status  of  package they sent out or will receive.  •The status should include: route of shipment, shipping method, current location, and estimated remaining delivery time.

2.Input package information•At  the  beginning  of  a  shipment,  the  related  courier  will  input  the  information  of  the  package into  the  system.  The  information  should  include:  start  point,  route  of  shipment,  and  shipping  method. •By providing package number, the couriers will be able to access to the system and update the location of shipment during the shipping.

3.Management•The  administrator  has  ability  to  manage  (modify,  create)  the  username  and  password  of  each  courier. •The administrator can also access to the list of accounts.

4.Log in•Couriers and administrator should input their username and password before they operate the system.

5.Maintain package information•The system needs a database of information about packages and accounts.  

this a sample project. I need same bullet points but related to clouding computing.

strategies of innovation

 

First, pick one of these disruptive innovations:

  • Ford Model-T (disrupted the automobile market)
  • Macintosh (created the PC revolution)
  • eBay (created online auctions)
  • Amazon (disrupted the retail market)
  • Microsoft Windows (disrupted the computing market)
  • Google search (disrupted the Internet)
  • Wikipedia (disrupted the Encyclopedia/reference sources market)
  • iPod and iTunes (disrupted music market)
  • iPhone and App store (revolutionized mobile computing)

Then, in a 3-5 page paper, describe how these innovations were disruptive. Here are the required sections of the paper:

  1. Brief History of the Market (*the market in which the innovation falls under)
  2. Disruptive Innovation: _____________ (your chosen innovation)
  3. The New Market (*what the market looks like now as a result of the disruptive innovation)

Discussion + Research Paper

Task 1: Research Paper. Number of pages 4 [NOT INCLUDING TITLE PAGE AND REF PAGE]

 Research: Quantitative vs QualitativeBackground: Quantitative data can be measured and documented with numbers. Additionally, quantitative data can be represented as quantities. On the other hand, qualitative data is not measured with numbers, but it is represented by qualities. For example, I use quantitative methods to conduct my PhD research because I like working with counts and measures.Assignment: Write a research paper the contains the following:

  • Discuss Quantitative Methodology
  • Discuss Qualitative Methodology
  • Compare and contrast qualitative data vs quantitative data.

TASK 2:

Discussion: 250 – 300 words [3 references must]

 This week we will discuss what is required to really make visualizations work. Berinato (2016) notes that the nature and purpose of your visualizations must be considered in order to start thinking visually. Berinato combines the nature and purpose into a 2×2 matrix that defines the following four types of visual communication: idea illustration, idea generation, visual discovery, and everyday dataviz.  Select and discuss one of the four types of visual communication: idea illustration, idea generation, visual discovery, and everyday dataviz from Berinato’s 2016 article. 

Java SLP

  

Write a Java application program to display the following information:

  1. The assessed value of a house
  2. The local real estate property rate (different based on the location)
  3. The property tax amount

Note: when you write this program, the value of the house and the  property tax are already known. The only value that is missing is the  property tax amount.

The following program calculates the area of a rectangle. You can use it as a reference for this assignment.

public class CalculateArea
 {
    public static void main(String[] args)
 {
          //declare variables

double width, length, area;

width = 5;
          length = 3;
          area = width * length;
          System.out.println(“The area is ” + area + “square meters.”);
 }
   }

Hint: there are different ways to write this program, one option is  to create three double variables for value of the house, tax rate, and  property tax amount.

For example,

      double houseValue = 750000;
      double taxRate = 0.01;
      double propertyTax = houseValue * taxRate;

SLP Assignment Expectations

  • There should be no bugs in the program
  • The program should give the correct result.
  • The output of the program should include at least the following information, but the wording can be different:

The current value of the house:

Local property tax rate:

Property tax due this year:

Network Lab 1…..

 Please download the attached lab instructions and complete all the tasks. You will need to download Packet Tracer in order to complete these tasks. You need to turn in both Packet Tracer and the completed document. You will loose points if both attachments are not submitted.