microsoft azure

The plan is for your client, a federal government agency, which is preparing for a Microsoft Azure cloud pilot. The Comprehensive Cloud Plan is the first of a two-part assignment for your client’s CIO. The plan should be submitted in a Word document. The Comprehensive Cloud Plan should be eight to 10 pages, including cover page, images or tables, and references.

Your plan should include the following information for the CIO:

  • an executive summary to describe the requirements
  • at least three benefits of using Azure
  • a detailed explanation of the Azure cloud types and deployment models
  • definition of common Azure terms: tenants, management groups, subscriptions, resource groups, and resources 
  • the significance of FedRAMP 
  • the Azure governance model

250 word prompt

 

  1. Evaluate and decide how you would respond to a data-driven competitor analysis that focuses on technology operations.
  2. What criteria would be of the most value?
  3. What information would be most important to you?

Software Management -2Ass

 Describe how organizational culture is related to project management. What type of culture promotes a strong project environment? Please give a specific example. 

ITS-530 – Analyzing & Visualizing Data – Paper

Review Discussion: Storytelling and Success Stories, then focus on Moritz’s work on the OECD Better life index download the executive summary and the index data.

In a one-page summary, note a few particular places around the world and compare and contrast the statistics.  Also, note briefly how this graphic tells the story.

Notes: plagiarism check required, APA7 format, include References, within 8hrs

Links:

https://www.visualisingdata.com/2013/04/discussion-storytelling-and-success-stories/

https://www.oecdbetterlifeindex.org/#/11111111111

Create an application

  

Create an application that uses a structure to store the following data about a customer account: Last Name, First Name, Customer Number, Address, City, State, Zip Code, Telephone Number, Account Balance, and Date of Last Payment. The application should allow the user to save customer account records to the file, search the file for a customer by last name or customer number, and print a report listing all the customer records in file.

Input validation: When entering a new record, make sure the user enters data for all fields. Do not accept negative numbers for the account balance.

network security layers

Deny by default/allow by exception assumes that all traffic is potentially malicious or at least unwanted or unauthorized. Everything is prohibited by default. As benign, desired, and authorized traffic is identified, an exception rule grants it access to the network.

Allow by default/deny by exception assumes that most traffic is benign. Everything is allowed by default. As malicious, unwanted, or unauthorized traffic is identified, an exception rule blocks it.

Most security experts agree that deny by default/allow by exception is the more secure stance to adopt.

Answer the following question(s):

When would you use allow by default/deny by exception? Provide a rationale for your answer.

Discussion

200 words+

How does disaster recovery relate to business continuity? What is the scope of DR? What is the scope of BCP?

    Please list your reference/s

Project 6 Description

     

Project 6 Description

 In this module, you will find two files:
Teams.txt – this file contains a list of several Major League baseball teams in alphabetical order.  Each team listed in the file has won the World Series at least once.
WorldSeriesWinners.txt – this file contains a chronological list of the World Series winning teams from 1903 – 2012.  The first line in the file is the nae of the team that won in 1903 and the last line is the name of the team that won in 2012.  Note that the World Series was not played in 1904 or 1994.
Create an application that displays the contents of the Teams.txt file in a ListBox control.  When the user selects a team in the ListBox, the application should display the number of times that team has won the World Series in the time period from 1903 to 2012.
Tip:  Read the contents of the WorldSeriesWinners.txt file into a List or an array.  When the user selects a team, an algorithm should step through the list or array counting the number of times the selected team appears.

To Do:
1.  Zip your entire project together.   Upload your .zip file into the dropbox.
2.  Check the Calendar for the due date.
3.  Check the rubrics to see how your project will be graded.

 

Theme Park

 Don’t use chegg or coursehero

Programming Assignment 7 – Theme Parks and Threads   
Amusement parks are a lot of fun, but everyone agrees the worst part of the experience is waiting.
Some companies invest in a lot of clever systems to help manage and control their lines more efficiently.
To see behind the scenes at how Disney does this, check out:
https://www.nytimes.com/2010/12/28/business/media/28disney.html
Now we’re going to create our own command station that uses threads to activate and track rider
movement throughout a bustling amusement park.  
Program Requirements
• Create a new class called “ThemePark.” Inside it, put your main program. This program will
manage and monitor all the theme park rides in the park. ThemePark should extend Thread.
• Create a new class called “Amusement.” This class should extend Thread. This class will have the
following variables and methods to access them. (Remember to use proper Object-Oriented
design in its creation):
o A ride type (e.g., “Bumper Cars,” “Rollercoaster,” “Carousel”)
o A waiting Queue (those waiting in line)
o A ride Queue (those actively riding the ride)
o A maximum capacity (controls how many people can ride)
o A ride duration (how long the ride takes)
o A running Boolean (is the ride running? True/false) – initially set to false
• Override the run() function inside your “Amusement” class. This function should do the
following
o Set the “running” state to true
o Sleep for x seconds (where x is the ride’s duration)
o When finished, set the “running” state to false
• Inside ThemePark, instantiate five Amusement objects. Assign each Amusement a type,
capacity, and duration. Put the capacity at around 20–60 riders at one time
o Create a new Queue called “attendees.” Fill this with unique numbers from 1–1000
o Start each of the Amusement threads. Have ThemePark check every second on the
“running” status of each Amusement. If an Amusement is not running, first put all of
the riders in the Amusement’s ride Queue into the “attendees” Queue. Put the
maximum number of riders from the ride’s waiting Queue into the ride Queue. Finally,
take a set number of riders from the “attendees” Queue and place them in the
Amusement’s waiting Queue

Note: here is a diagram to help you make sense of the flow of riders into the various
Queues:  

 
• If the user types “END,” stop all of the threads and place the riders back into the attendees
Queue. Then exit the program

Include appropriate comments throughout your code. Remember to use standard Java naming
conventions. Put your name and description of the program in the comments at the top. Submit your
ThemePark, Amusement, and all associated project Java and class files, as well as a screenshot of it in
operation on your computer. Package all of these in a zip file and name the submission in the format:
NAME_COURSE_ASSIGNMENT_DATE.zip
Submission is due by 11:59 p.m. ET.  
• If the user types “END,” stop all of the threads and place the riders back into the attendees
Queue. Then exit the program

Include appropriate comments throughout your code. Remember to use standard Java naming
conventions. Put your name and description of the program in the comments at the top. Submit your
ThemePark, Amusement, and all associated project Java and class files, as well as a screenshot of it in
operation on your computer. Package all of these in a zip file and name the submission in the format:
NAME_COURSE_ASSIGNMENT_DATE.zip