Assignment 2: Agile Delivery FrameworkDue Week 6 and worth 125 pointsIn Assignment
Get college assignment help at Smashing Essays Assignment 2: Agile Delivery FrameworkDue Week 6 and worth 125 pointsIn Assignment 1, you created a project charter for your project(I have attached the first assignment). Your project sponsor has requested more information about the Agile areas of your project. You have decided to use the Agile Delivery Framework for this project, but your team members are now offshored in India.Write a five to six (5-6) page paper in which you define the delivery framework of your project. In your paper you must:Your assignment must follow these formatting requirements:The specific course learning outcomes associated with this assignment are:Click here to view the grading rubric for this assignment.
In this essay, you will explain how the Enigma machine has changed
In this essay, you will explain how the Enigma machine has changed the world of security to this day. You will provide a timeline of the major milestones of cryptanalysis and the impact it has had on data security over the years. In addition to the video, choose one other scholarly reference to support your discussion.Requirements:
Please select a Disaster Recovery Plan (DRP) for any selected scenario. You
Please select a Disaster Recovery Plan (DRP) for any selected scenario. You can choose any organization’s plan or create your own.1. Describe the key elements of the Disaster Recovery Plan to be used in case of a disaster and the plan for testing the DRP.2. Briefly discuss the internal, external, and environmental risks, which might be likely to affect the business and result in loss of the facility, loss of life, or loss of assets. Threats could include weather, fire or chemical, earth movement, structural failure, energy, biological, or human.3. Of the strategies of shared-site agreements, alternate sites, hot sites, cold sites, and warm sites, identify which of these recovery strategies is most appropriate for your selected scenario and why.4. For each testing method listed, briefly describe each method and your rationale for why it will or will not be included in your DRP test plan.• Include at least Four (4) reputable sources.• Please make sure your submission is 2 – 3 pages in length and meet the minimum APA formatting guidelines
1. First, launch NetBeans and close any previous projects that may be
1. First, launch NetBeans and close any previous projects that may be open (at the top menu go to File ==> Close All Projects).Then create a new Java application called “WeightedAvgDataAnalyzer” (without the quotation marks), that modifies the DataAnalyzer.java in Horstmann Section 7.5, pp. 350-351 according to the specifications below.The input file should be called ‘data.txt’ and should be created according to the highlighted instructions below. Note that even though you know the name of the input file, you should not hard-code this name into your program. Instead, prompt the user for the name of the input file.The input file should contain (in order): the weight (a number greater than zero and less than or equal to 1), the number, n, of lowest numbers to drop, and the numbers to be averaged after dropping the lowest n values.You should also prompt the user for the name of the output file, and then print your results to an output file with the name that the user specified.You can use a writeFile method that does all the work (i.e., does not call a writeData method the way that Horstmann’s readFile method calls a readData method). Use a try-with-resources statement in your writeFile method when creating a new PrintWriter.The inputValues come from a single line in a text file (data.txt) such as the following: 0.5 3 10 70 90 80 20The output in the output file must give the weighted average, the data and weight that were used to calculate the weighted average, and the number of values dropped before the weighted average was calculated.Your output should look very much like the following: “The weighted average of the numbers is 42.5, when using the data 10.0, 70.0, 90.0, 80.0, 20.0, where 0.5 is the weight used, and the average is computed after dropping the lowest 3 values.”Write the output to a file with the filename that the user chose to name the output file (e.g., output.txt). Don’t hard-code the output file name in your program.2. First, launch NetBeans and close any previous projects that may be open (at the top menu go to File ==> Close All Projects).Then create a new Java application called “WeightedAvgDropSmallest” (without the quotation marks) according to the following guidelines.The program prompts the user for five to ten numbers all on one line, separated by spaces, calculates the weighted average of all those numbers except the lowest n numbers, where n and the weight are also given by the user, and displays all the numbers, the weight, the number of lowest numbers dropped, and the calculated average to the user.The program uses methods to:The first method should take no arguments and return an array list of doubles.The second method should take no arguments and return a single integer, the number of the lowest numbers to drop before calculating the average.The third method should take no arguments and return a double (the weight)The fourth method should take three arguments: an array list of numbers (the return value of the first method above); an integer (the number of smallest items to drop before calculating the average); and a double (the weight). This method should return a double (the weighted average of all the numbers except the lowest n values).The fifth method should take four arguments: an array list of numbers (the return value of the first method above); an integer (the number of smallest numbers to drop before calculating the average); a double (the weight); and a double (the weighted average returned from the fourth method above). This method should have no return value.For example:If the user gives these numbers for calculating the average:40 60 80 100 20and the user gives the number 2 to indicate how many of the lowest values should be dropped before calculating the average, and gives a weight of 0.5, then the program should give as output:The weighted average of the numbers is 40.0, when using the data 40.0, 60.0, 80.0, 100.0, 20.0, where 0.5 is the weight used, and the average is computed after dropping the lowest 2 values.3. First, launch NetBeans and close any previous projects that may be open (at the top menu go to File ==> Close All Projects).Then create a new Java application called “CheckString” (without the quotation marks) according to the following guidelines.** Each method below, including main, should handle (catch) any Exceptions that are thrown. ** ** If an Exception is thrown and caught, print the Exception’s message to the command line. **
1. First, launch NetBeans and close any previous projects that may be
1. First, launch NetBeans and close any previous projects that may be open (at the top menu go to File ==> Close All Projects).Then create a new Java application called “WeightedAvgDataAnalyzer” (without the quotation marks), that modifies the DataAnalyzer.java in Horstmann Section 7.5, pp. 350-351 according to the specifications below.The input file should be called ‘data.txt’ and should be created according to the highlighted instructions below. Note that even though you know the name of the input file, you should not hard-code this name into your program. Instead, prompt the user for the name of the input file.The input file should contain (in order): the weight (a number greater than zero and less than or equal to 1), the number, n, of lowest numbers to drop, and the numbers to be averaged after dropping the lowest n values.You should also prompt the user for the name of the output file, and then print your results to an output file with the name that the user specified.You can use a writeFile method that does all the work (i.e., does not call a writeData method the way that Horstmann’s readFile method calls a readData method). Use a try-with-resources statement in your writeFile method when creating a new PrintWriter.The inputValues come from a single line in a text file (data.txt) such as the following: 0.5 3 10 70 90 80 20The output in the output file must give the weighted average, the data and weight that were used to calculate the weighted average, and the number of values dropped before the weighted average was calculated.Your output should look very much like the following: “The weighted average of the numbers is 42.5, when using the data 10.0, 70.0, 90.0, 80.0, 20.0, where 0.5 is the weight used, and the average is computed after dropping the lowest 3 values.”Write the output to a file with the filename that the user chose to name the output file (e.g., output.txt). Don’t hard-code the output file name in your program.To create the input file, while in NetBeans with your project open, first click to highlight the top-level folder of your project, which should be called WeightedAvgDataAnalyzer.Then from the File menu do this:File->New FileKeep the Project name at the top; keep Filter blankCategories choose Other (at the bottom of the categories list)File Types choose Empty File (at the bottom of the files list)Next->FileName: data.txtFolder: this should be blank; if it’s not, delete whatever’s there.FinishIn the empty file data.txt that you just created, add a single line of data like that shown in the example above, where the weight is a double (greater than 0.0 and less than or equal to 1.0) and the other numbers are the number, n, of lowest values to drop and then the numbers to be averaged after dropping the lowest n values.2. First, launch NetBeans and close any previous projects that may be open (at the top menu go to File ==> Close All Projects).Then create a new Java application called “WeightedAvgDropSmallest” (without the quotation marks) according to the following guidelines.The program prompts the user for five to ten numbers all on one line, separated by spaces, calculates the weighted average of all those numbers except the lowest n numbers, where n and the weight are also given by the user, and displays all the numbers, the weight, the number of lowest numbers dropped, and the calculated average to the user.The program uses methods to:The first method should take no arguments and return an array list of doubles.The second method should take no arguments and return a single integer, the number of the lowest numbers to drop before calculating the average.The third method should take no arguments and return a double (the weight)The fourth method should take three arguments: an array list of numbers (the return value of the first method above); an integer (the number of smallest items to drop before calculating the average); and a double (the weight). This method should return a double (the weighted average of all the numbers except the lowest n values).The fifth method should take four arguments: an array list of numbers (the return value of the first method above); an integer (the number of smallest numbers to drop before calculating the average); a double (the weight); and a double (the weighted average returned from the fourth method above). This method should have no return value.For example:If the user gives these numbers for calculating the average:40 60 80 100 20and the user gives the number 2 to indicate how many of the lowest values should be dropped before calculating the average, and gives a weight of 0.5, then the program should give as output:The weighted average of the numbers is 40.0, when using the data 40.0, 60.0, 80.0, 100.0, 20.0, where 0.5 is the weight used, and the average is computed after dropping the lowest 2 values.3. First, launch NetBeans and close any previous projects that may be open (at the top menu go to File ==> Close All Projects).Then create a new Java application called “CheckString” (without the quotation marks) according to the following guidelines.** Each method below, including main, should handle (catch) any Exceptions that are thrown. ** ** If an Exception is thrown and caught, print the Exception’s message to the command line. **
Consider the policy of mandatory voting–referenced in a reading and described in
Consider the policy of mandatory voting–referenced in a reading and described in lecture–such as that used by Australia. Should the United States adopt a policy of mandatory voting?, respond to a policy proposal that would require citizens to vote in every presidential and federal midterm general election, levying a $25 fine if they fail to do so. In your answer, consider most or all of the following:
Consider the policy of mandatory voting–referenced in a reading and described in
Consider the policy of mandatory voting–referenced in a reading and described in lecture–such as that used by Australia. Should the United States adopt a policy of mandatory voting?, respond to a policy proposal that would require citizens to vote in every presidential and federal midterm general election, levying a $25 fine if they fail to do so. In your answer, consider most or all of the following:
In 500 words discuss SOX . How do logging and separation of
In 500 words discuss SOX . How do logging and separation of duties help comply with SOX? How might database auditing and monitoring be utilized in SOX compliance? How can a DBA use automation to comply with SOX frameworks?Write in essay format not in outline, bullet-ed, numbered or other list format. Use the five paragraph format. Each paragraph must have at least five sentences. Include 3 quotes with quotation marks and cited in-line and in a list of references. Include an interesting meaningful title.
Security risks in database migration. A one page single spaced summary, written
Security risks in database migration. A one page single spaced summary, written in essay format with no bullet or numbered lists. It must include quotes from your sources which must be surrounded by quotation marks and cited in-line. It must have an informative title which should not be too broad but should focus attention on your topicPlease find the attached PPT related to topic.
a) what could you do as a leader to motivate a group
a) what could you do as a leader to motivate a group to higher performance, where there are individuals with strong opinions and there is strong disagreement about what needs to be done to solve a problem? (160 words)b) Leadership is Everyone’s Business, Kouses and Pozner state that when seeking leadership, “You don’t have to look up. You don’t have to look out. You only need to look inward.” What does that say to you? (160 words)c)My Goals (150 words)Specific Actions to Take (start with a verb)Review (150 wordsThis plan reflects where I am now and where I hope to go. I will commit to reviewing this plan often to update and adjust as needed on my road to becoming a great leader….
Question 1.Attached Files:Included with this assignment is an Excel spreadsheet that contains
Get college assignment help at Smashing Essays Question 1.Attached Files:Included with this assignment is an Excel spreadsheet that contains data with two dimension values.The purpose of this assignment is to demonstrate steps performed in a K-Means Cluster analysis.Review the “k-MEANS CLUSTERING ALGORITHM” section in Chapter 4 of the Sharda et. al. textbook for additional background.Use Excel to perform the following data analysis.You will use Excel to help with calculations, but only standard functions should be used (i.e. don’t use a plug-in to perform the analysis for you.) You need to show your work doing this analysis the long way. If you were to repeat steps 4 through 6, what will likely happen with the cluster centroids? Here is a link to an example spreadsheet using a smaller data set. It contains two tabs. The first tab is the raw data. The second tab contains the analysis that was performed. Make sure that you use a different starting center points from the example.Example Excel Analysis (attached below)Question 2:Attached Files:Included with this assignment is an Excel spreadsheet containing customer receipts.The purpose of this assignment is to demonstrate steps performed in an Apriori analysis (i.e. Market Basket analysis).Review the “APRIORI ALGORITHM” section of Chapter 4 of the Sharda et. al. textbook for additional background.Use Excel to perform this analysis.Make note of any pattern that you noticed while performing the analysis. As a retail business owner, how would you use the results from this analysis? The rubric for this assignment can be viewed when clicking on the assignment link.
need a comp science, forensics assignment help
Lab 4 Details:Hardware/Software Setup RequiredComputerInternet BrowserProblem DescriptionResearch a default password list.Estimated completion time: 60 minutesOutcomePrepare a one-paragraph summary detailing how this list would be useful in a forensic investigation.Validation/Evaluation
Below are ten questions. Please reply to the quiz questions in
Below are ten questions. Please reply to the quiz questions in short essay answers. Try to keep responses to approxametly 200 words.Please answer each question directly. Being wordy does not help your grade and could lower your score because your answer may not end up communicating the answer effectively. Remeber to use your Glossary Index, and text readings to present the best answer.1. What percentage of the people surveyed in the study discussed in your text Ch.10, believe that the media is biased and why?2. Identify and explain three reasons from your text Ch.9 that point out, why citizens do not vote?3. What are the two ways your text’s Ch. 11 points out individuals through the use of new information technologies promote polarized partisanship and extremism?4. What is Congressional Oversight, and what is its function, see Ch12?5.Explain the evolution of Presidential Power and provide examples. Also, how is the executive’s power ultimately checked, see Ch13?6. When political scientist use the term “iron triangle,” what are they discussing? Make sure to describe and explain the entire working concept and name the six stages of the Policy Process. See Chs. 7 and 14.7. What is “Judicial Review” and what case decided this ruling, see Chs. 2 and 14?8. Please identify and define isolationism and interventionism. Then, using the brief history detailed in Ch. 18, explain why one of these two approaches to foreign policy in your opinion have served best for the United States?9.Explain two of the public benefits that are derived from the Tools of Domestic Policy, see Ch.17.10. After reviewing the definitions for a tax expenditure and a cash transfer, please explain any similarities you can identify with the intended results of these two provisions, see Chs. 16 and 17.
Read the case study titled, “Carlson Companies” I have provided the file.Write
Read the case study titled, “Carlson Companies” I have provided the file.Write a fully developed paper in which you:Your assignment must follow these formatting requirements:The specific course learning outcomes associated with this assignment are:
A) My Role at work place – Computer System AnalystB) Courses:Reflect on
A) My Role at work place – Computer System AnalystB) Courses:Reflect on the connection between knowledge or concepts from these courses and how those have been, or could be, applied in the work place you should write a total of 400-500 words.C) Please explain how you participate in business operations and decision making in your current position (total of 100-200 words)
Week 5 DiscussionManaging Your Agile TeamI HAVE ATTACHED THE PREVIOUS DISCUSSION QUESTION
Week 5 DiscussionManaging Your Agile TeamI HAVE ATTACHED THE PREVIOUS DISCUSSION QUESTION WITH AN ANSWER
head globalization and title page
This week, you are to write a course project portfolio essay on the issue of globalization. Give an example of a current, active website that is based in the US, which expresses the values of globalization, and analyze the site. Your essay should answer the following questions:Your thesis for this essay should attempt to argue why this site is an example of the values of globalization, and use your answers from the questions above to explain why this is true.This essay should be 2-3 pages, in APA style, utilizing the college’s library resources. Please include at least one scholarly resource as a minimum in your essay.Submit your completed assignment to the drop box below. Please check the Course Calendar for specific due dates.Save your assignment as a Microsoft Word document. (Mac users, please remember to append the “.docx” extension to the filename.) The name of the file should be your first initial and last name, followed by an underscore and the name of the assignment, and an underscore and the date. An example is shown below:
assignmet for runing head and title page … final project due
its basically already done just need to put it together so it would take just like 15 minutesYour final project is due! Be sure to review the Course Project – Introduction page. As you are making the final improvements to your project, be sure to:Your final project should:Submit your completed assignment to the drop box below. Please check the Course Calendar for specific due dates.Save your assignment as a Microsoft Word document. (Mac users, please remember to append the “.docx” extension to the filename.) The name of the file should be your first initial and last name, followed by an underscore and the name of the assignment, and an underscore and the date. An example is shown below:Jstudent_exampleproblem_101504Need Help? Click here for complete drop box instructions.
manage the implementation of current industry-specific technologies
Questions:It is important that you know how to find information on the site. Research latest and current industry tools used for website design and identify appropriate tool for website project you are working on. Name two standards that are proprietary? Name one standard regarding websites that is open? What is a web validator used for? Visit w3c.org and list which of the following has a validator provided: Name the legislated standard and compliance requirements with a brief description of each.- True or false: QA processes associated with the development of open source software could be described as centralized QA?You are required to develop an action plan based on your recommendations. The action plan needs to list the tasks that need to be implemented. You need to consider: benefits, appropriate technologies and current industry standards.Develop procedure to test tools to ensure that they are current and in line with latest industry trends, project outcomes and client requirements. Outline timeframe of design of specific website functionality and features as per client business requirement in order to achieve business objectives.Outline your understanding of current industry technologies and standards. Research different sources online provides details of latest industry specific technology for websites and related functionality, features design. How to access and use the technology for your project and how will that improve quality standards. You need to be personally aware of changes in technology, standards and competitors websites. Identify where a current performance and usability fall short of requirements of the current industry standards. Discuss whether current tools are meeting standards and client expectations. Produce evaluation checklist to measure or benchmark advantages of tools currently in use. Ensure that technology is in use is for operation within a set range of environmental conditions, and operations of website outside these conditions as it can damage the hardware or reduce the working life of the website use. Obtain client feedback for regular evaluation of website performance to anlayse and review purposes.
Objective: The following sources attached below are peer reviewed journal articles that
Objective: The following sources attached below are peer reviewed journal articles that support or refute the major themes in the book called, “Sparing Nature: The Conflict Between Human Population Growth and Earth’s Biodiversity” by Jeffrey McKee. Book Link – http://search.ebscohost.com.ezproxy1.apus.edu/login.aspx?direct=true
Read the Innovation at International Foods Case Study on pages 234-238 in
Read the Innovation at International Foods Case Study on pages 234-238 in the textbook. Answer the Discussion Questions at the end of the Case Study. Your responses must be complete, detailed and in APA format with references.Attached case study from textbook.Discussion Questions:1. In discussion with Josh, Tonya foreshadows “some serious obstacles to overcome.” Describe these obstacles in detail.2. How can Josh win support for his team’s three-point plan to use technology to help IFG reach its customers?
The post Assignment 2: Agile Delivery FrameworkDue Week 6 and worth 125 pointsIn Assignment appeared first on Smashing Essays.