Project Proposal outline

 Write a project proposal on a disaster recovery plan that utilizes cloud services for data and system redundancy. The outline of the project will need to be a minimum of one page in length and include an introduction, scope/description, and a conclusion on what the project accomplishes. In addition, include any possible references up to this point.

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

discussion

 

Describe your project and why you chose it. (needs to use the same project subject as in previous work) 

Discussion Parameters

Initial post response: Your posts should be of substance that address the topic. The initial response should be a minimum of 150 words. Use APA format for any quotations or citations you use to support your answer.

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

Discusion 11- Project Risk

Chapter 13: Project Complexity and RiskInitial 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. Provide an example of the upside of risk? How does it compare to as downside? How does an organization prepare to take the greatest advantage of an upside to risk?

[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]

Title: Managing Project Risks ISBN: 9781119489733 Authors: Peter J. Edwards, Paulo Vaz Serra, Michael Edwards Publisher: John Wiley & Sons Publication Date: 2019-08-13

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

Internet Protocol and Subnetting

You have learned a great deal about the Internet Protocol (IP). IP is a set of rules for how data is sent across networks and arrive at the intended destination. An IP address is a numeric identifier assigned to each device on an IP network. Unfortunately, the internet has finally run out of IPv4 addresses. The good news is that everyone knew this would eventually occur and there is a solution: IPv6.

For this discussion, compare the characteristics of IPv4 and IPv6. Discuss any benefits one provides over the other.

Both IPv4 and IPv6 have the option to subnet. Some of the reasons to subnet a network is to improve network performance and speed, reduce network congestion, control network growth, and ease administration.

Next, select a Class A, B, and C IP (v4) address for input into the subnet calculator.

Class A: 1.0.0.1 – 126.255.255.254
Class B: 128.1.0.1 – 191.255.255.254
Class C: 192.0.1.1 – 223.255.254.254
Take a screenshot and post each of your results to include in your post.

If you want to increase the number of subnets, you simply change the Maximum Subnets field input to your desired number. When you increase this number, what happens to the Host per Subnet field and why?

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

Project 1: Job Interview Presentation

This week, you will submit your answers to the interview questions.

If you didn’t download the Job Interview Presentation Template from Week 3, do so now and follow the instructions to record your work.

The questions are based on fundamental networking concepts that are likely to be asked at an entry-level networking job interview. The following topics are covered:

LAN topologies
OSI model and layers
networking devices
common protocols
IP ranges
class of network and default subnet mask
autonomous system
You will also need to include either an audio file along with your presentation or record a screen-capture video of the presentation. These presentation resources can help you prepare and record your presentation. Your presentation should be done as if you were in an actual interview. The presentation should be about five to 10 minutes.

How Will My Work Be Evaluated?

As you progress in your networking career, you will interview for positions and may even find yourself making presentations to customers, client audiences, and management. Effective interviewing includes a systematic, purposeful conversation. Your goal is to demonstrate your knowledge, skills, and/or experience; and ability to do the job successfully. You can achieve this by explicitly and confidently answering the questions posed.

The interview questions selected are likely to be asked during an interview for an entry-level networking position. Successfully answering these questions conveys a foundational networking knowledge that will help you land the position! Use the provided PowerPoint template to document your answer, then record yourself answering each question. Submit to the Assignment folder when complete.

The following evaluation criteria aligned to the competencies will be used to grade your assignment:

1.1.2: Support the main idea and purpose of a communication.
1.2.2: Employ a format, style, and tone appropriate to the audience, context, and goal.
2.3.1: State conclusions or solutions clearly and precisely.
10.1.1: Identify the problem to be solved.
10.1.3: Define the specifications of required technologies.
13.1.1: Create documentation appropriate to the stakeholder

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

Parallel Computing Homework

  

1. For each of the following code segments, use OpenMP pragmas to make the loop parallel, or

explain why the code segment is not suitable for parallel execution.

a. for (i = 0; i < (int) sqrt(x); i++) {

a[i] = i + 12;

if (i < 10) b[i] = a[i];

}

b. flag = 0;

for (i = 0; (i < n) \& (!flag); i++) {

a[i] = 2.8 * i;

if (a[i] < b[i]) flag = 1;

}

c. for (i = 0; i < n; i++) {

a[i] = fun(i);

}

d. for (i = 0; i < n; i++) {

a[i] = fun(i);

if (a[i] < b[i]) b[i] = a[i];

}

e. for (i = 0; i < n; i++) {

a[i] = fun(i);

if (a[i] < b[i]) break;

}

f. product = 0;

for (i = 0; i < n; i++) {

product += a[i] * b[i];

}

g. for (i = j; i < 3 * j; i++) {

a[i] = a[i] + a[i-j];

}

h. for (i = j; i < n; i++) {

a[i] = c * a[i-j];

}

2. Suppose a parallel program completes execution on 32 processors in 348 seconds, and it has

been found that this program spends 21 seconds in initialization and cleanup on one processor, and for

the remaining time all 32 processors are active. What is the scaled speedup of this parallel program?

3. Suppose a parallel program executing on 20 processors spends 98% of its time inside parallel

code. What is the scaled speedup of this parallel program?

4. The table below shows the speedups observed for six different parallel programs A, B, C, D,

E, F as the number of processors is increased from 1 through 8.

  

Processors

Speedup

 

A

B

C

D

E

F

 

1

1.00

1.00

1.00

1.00

1.00

1.00

 

2

1.60

1.92

1.92

1.96

1.74

1.94

 

3

2.00

2.73

2.78

2.88

2.30

2.82

 

4

2.29

3.39

3.57

3.67

2.74

3.65

 

5

2.50

3.91

4.31

4.46

3.09

4.42

 

6

2.67

4.29

5.00

5.22

3.38

5.15

 

7

2.80

4.55

5.65

5.93

3.62

5.84

 

8

2.91

4.71

6.25

6.25

3.81

6.50

Using the Karp-Flatt metric as the basis, choose the statement that best describes the expected speedup

for each program with 16 processors.

I. The speedup achieved on 16 processors will probably be at least 40% higher than the speedup

achieved on eight processors.

II. The speedup achieved on 16 processors will probably be less than 40% higher than the speedup

achieved on eight processors, due to the increase in overhead as processors are added.

III. The speedup achieved on 16 processors will probably be less than 40% higher than the speedup

achieved on eight processors, due to the large serial component of the computation.

5. Let n ≥ f(p) denote the isoefficiency relation of a parallel system and let M(n) denote the

amount of memory required to store a problem of size n. Use the scalability function to rank the

parallel systems shown below from the most scalable to the least scalable:

a. f(p) = Cp, M(n) = n2.

b. f(p) = C√p, M(n) = n2.

c. f(p) = C√plog p, M(n) = n2.

d. f(p) = Cplog p, M(n) = n2.

e. f(p) = Cp, M(n) = n.

f. f(p) = Cp√p, M(n) = n.

g. f(p) = Cp2√p, M(n) = n.

6. Suppose a problem of size 100,000 can be solved in 15 hours on a computer today. Assuming

that the execution time is solely determined by the CPU speed, determine how large a problem can be

solved in 15 hours time by a computer that is 100 times as fast as today’s computer, if the algorithm

used to solve the problem has a time complexity given by (for a problem size of n):

a. Θ(n2)

b. Θ(nlog2n)

c. Θ(n3)

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

question1

Alternative Processing Site Proposal

R&D Media, LLC has asked you to develop a proposal for an Alternative Processing Site.

Conduct research on the latest technologies for Alternative Processing Sites (feel free to use your

assignment).

Determine who the company’s stakeholders are.

Using the results of your research, develop the request for proposal that best meets the stakehold

innovative technologies.

Within your proposal you must also consider cost and what R&D Media, LLC can afford.

Develop and document the requirements for R&D Media, LLC’s alternate processing site.

Identify the mission critical services and indicate services that are not provided at the alternate sit

security issues.

Create and document the design and do walkthroughs for building the alternate site to ensure tha

Document the activation process for the alternate processing site.

Document the hand-back process.

The information you need about R&D Media, LLC is as follows:

Consider the LAN for a small 100-person business, R&D Media, LLC Inc. The business occupies one

has a computer on his or her desk, and there are servers for the web, file and print sharing, email, dat

rack of 20 quad processor Xeon® servers running Red Hat® Linux that generates the actual high-reso

Media, LLC produces for its clients. The desktop systems consist of Apple® Mac® Pro desktops runni

the creative staff, and the latest version of Windows on computers for general use. The servers are ru

Server running Microsoft Exchange®, web server, and file and print service.

The network is gigabit

Ethernet and the network hardware are a mixture from Cisco® and Hewlett-Packard®. Employees, bu

R&D Media, LLC’s office with laptop computers in order to collaborate on projects. The laptops will obt

DHCP server at R&D Media, LLC.

R&D Media, LLC has 10 megabit/second Internet access and uses a SOHO firewall that doubles as a

Internet-based attempts to access R&D Media, LLC’s servers and desktop computers, but admits ema

destined for specifically hardened servers.

R&D Media, LLC produces short animation movies for advertiser clients

These clients are located worldwide and need to communicate securely with R&D Media, LLC as they

shorts. R&D Media, LLC uses its high- speed Internet connection both to support the exchange of mov

general Internet web connectivity.

The network has the following additional specifications:

The network is all TCP/IP based.

The network is based on Cisco routers and switches.

All desktop computers include email, web, database access, and office productivity software.

Creative users also have multimedia authoring software installed.

All server and critical network equipment are in a secure server room.

Printers are located around the office area.

The multimedia department uses high-end workstations for video rendering and animation.

A load-balancing dual firewall connects the network to the Internet.

Security Policy:

All email must be secure so it cannot be inadvertently sent to the wrong party or intercepted.

All network resources and equipment must be password protected.

Company equipment may not be used for personal business.

All Windows-based PCs must run approved anti-virus and antispyware programs.

All servers and desktops should run host-based intrusion detection software.

Clients may use the Secure FTP (SFTP) server to send or receive multimedia files, but under no c

able to view the files of any other client.

The mail server must be configured not to forward email that originated on the Internet.

Password aging must be enforced on all servers and desktops.

All server configurations must be readily available to rebuild a failed system.

Offsite backup is required, with 24/7 access to that location.

All employees will demonstrate they understand the security policy.

There will be a security officer who reports directly to the CEO of R&D Media, LLC.

Be sure that you capture the following information in your report:

List of mission critical applications, list of non-critical applications dropped

New technologies for Alternative Processing Sites are utilized

The needs of R&D Media, LLC’s stakeholders are considered within the plan

A Plan for updating alternate processing site software during normal operation

Documentation showing a simple rack diagram and a network diagram

Network configuration info (IP, DNS, MX)

Power consumption estimates

Bandwidth estimates

Information security architecture (firewalls, VPNs)

Plan for cutting over to the alternate plan

Plan for cutting back to the main site (a.k.a. hand back)

Assignment Requirements

Your paper should be 8–10 pages of content, in APA and include a cover sheet, table of contents, abs

document your content with proper APA in text citations that match your reference list.

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

How Do You Manage Conflict in a Team

175 words: 

  • Share a time when you experienced conflict within a team.
  • What strategies did you and your team members use to manage and resolve the conflict? Were these strategies successful? Why or why not?
  • How could you apply the strategies presented this week to reach a more effective outcome?

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

Problem 11- Project Risk

#1. I  would like for you to write me a two-page document this week with at least three resources other than your book which discusses the natural and human process we all go through daily in managing risks in our daily lives. I want you to draw direct correlation between the processes we go through mentally to avoid risks which could harm us and the risk processes organizations go through in dealing with risk relative to a project. How do they differ – how are they the same?  Give me some examples of behaviors you engage in with your daily life to avoid personal risk. 

Requirements:

  • There is no minimum or maximum required number of pages. Your response will be considered complete, if it addresses each of the components outlined above.
  • Use of proper APA formatting and citations – If supporting evidence from outside resources is used those must be properly cited. A minimum of 7 sources (excluding the course textbook) from scholarly articles or business periodicals is required.
  • Include your best critical thinking and analysis to arrive at your justification.

Text

Title: Managing Project Risks ISBN: 9781119489733 Authors: Peter J. Edwards, Paulo Vaz Serra, Michael Edwards Publisher: John Wiley & Sons Publication Date: 2019-08-13

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

Leadership and Conflict Management Presentation

6 SLIDE

you proposed how you would build your own team. Now, your newly formed team is starting to work on its first real project that needs to have strong collaboration and a quick turnaround. However, your team has encountered the following challenges:

  • One team member does not agree with the goal and keeps questioning the processes.
  • Two team members are having a personal conflict, and this is preventing them from collaborating on the project.
  • One team member is not engaged.

Answer the following questions in your presentation:

  • What were your choices for managing conflict on your team?
  • What conflict resolution strategies did you employ to encourage collaboration and build consensus within a team? 
  • Are these strategies something you typically employ when confronted with a conflict? Why or why not?
  • How can you keep all employees on your team engaged? Provide examples.

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now