Disaster and recover planning

 

Please enter your response to both questions posed below.

Total word count must be 250 to 300 words in your posting. (20 points)

Please also respond to at least two of your classmates with a meaningful reply of 150 words or greater each. (5 points each)

Do not cut and paste, please post original work.

Please provide references for your original postings in APA format.

1. Provide a summary of the importance of planning for a disaster

2.  Briefly describe the types of disasters that could occur that would require a Business Continuity and Recovery Plan

3. What legal or regulatory requirements would be likely to apply to a given organization? 

Questions for the Lab

  

Questions for the Lab

1. Carefully read the lab instructions in document and finish all tasks.

2. If a packet is highlighted by black, what does it mean for the packet?

3. What is the filter command for listing all outgoing http traffic?

4. Why does DNS use Follow UDP Stream while HTTP use Follow TCP Stream?

5. Using Wireshark to capture the FTP password.

Use the FTP site ftp://test.rebex.net/

The username for the FTP server is “demo”, and the password is “password”.

You will use the username and password to login the FTP server while

Wireshark is running. Note that the FTP server is a public FTP server, make sure you select the right interface for the capturing. You need to explain to me how you find the password and a screenshot of the password packet. Have fun!

Week DQs

Q.  Select two of the top strategic technologies identified by Gartner (Below there is a video link) and answer the question of how these technologies can be used to reduce costs, improve effectiveness, and grow the business. Support your reasoning. 

Note: 300 Words with intext citations and 2 references needed.

r2

 

R.2 Abstract of a Quantitative Research Article

Overview: The term “abstract” is a homophone which can mean one of two scholarly writing activities. One, is the abstract that you will write to introduce your dissertation. The other meaning is a shortened writing assignment whereby you write a condensed summary of an academic journal.  For this week, we will focus on writing a scholarly abstract of a quantitative journal. More information about writing an abstract can be found via the web resource “Writing Scholarly Abstracts.”Directions: View the rubric and examples to make sure you understand the expectations of this assignment.  Create a 1-2 page (more is fine) single-spaced Analysis of Research abstract published quantitative scholarly article related to your mock dissertation topic/research question. Additionally, this assignment functions just like assignment R.1 only it reviews a quantitative article instead of a qualitative one.Brevity and being concise are important as this analysis is intended to be a brief summation of the research.

Each abstract must therefore consist of the following in this order: 

 

1.conclusion

2. Suggestions for Further Research

 i will share link of the article which you are going write about. i just need conclusion and suggestions for further research for that article . its has to be in proper APA format ,proper ciations and references. 1 or 2 pages

this is the link for article:

https://www.tandfonline.com/doi/full/10.1080/02678373.2017.1304463

Blockchain – Discussion

Chapter 8 introduces governance issues and potential areas in which blockchain technology can help empower citizens. Create a new thread, choose one area from the material in chapter 8 in which blockchain technology can enhance citizen engagement, and describe the current problem and how blockchain technology could resolve or improve the current situation. Write your discussion in a way that is accessible by all readers – regardless of their political beliefs. In other words, focus on blockchain, not politics. Then think of three questions you’d like to ask other students and add these to the end of your thread. The questions should be taken from material you read in Chapter 7, 8, or 9. You’re not trying to test each other, but you are trying to start a discussion.

You must do this following:

1) Create a new thread. As indicated above, choose one area from the material in chapter 8 in which blockchain technology can enhance citizen engagement, and describe the current problem and how blockchain technology could resolve or improve the current situation. Write your discussion in a way that is accessible by all readers – regardless of their political beliefs. In other words, focus on blockchain, not politics. Then think of three questions you’d like to ask other students and add these to the end of your thread. The questions should be taken from material you read in Chapter 7, 8, or 9. You’re not trying to test each other, but you are trying to start a discussion.

2) Select AT LEAST 3 other students’ threads and post substantive comments on those threads. Your comments should answer AT LEAST one of the questions posed in the thread and extend the conversation started with that thread. Make sure that you include the question in your comment so I can see what question you’re answering.

ALL original posts and comments must be substantive. (I’m looking for about a paragraph – not just a short answer.)

Graduate Research & Critical Analysis jan 12

Assignment Content

  1. Your homework (HW) is to watch a movie and take some notes! 

    Movie Title: Invictus 
    Rated: PG-13, so you may be able to make it a family experience

    Options for viewing: 

    1) Rental Streaming Platforms ($3): Amazon Prime Video, Google Play, Redbox 
    2) Join a free viewing of the movie on Thursday, 1/12, at 1 pm EST.  Use the following link to join: https://us.bbcollab.com/guest/99d7453adaf74d5f8f0bedbdb051d5ac

    As you watch, take notes on points in the movie that show: 

    1. What important problem did Mandela face, and who was impacted by it?
    2. What might have been the causes of that problem?
    3. What did he try in order to solve it or mitigate it (make it better)
    4. What was the ultimate solution he came to?
    5. How did he implement it?
    6. What are the ways you know it worked?
    7. DO NOT write AFTER the movie! You can pause to take notes
      (If English is not your first language, you can take all or part of your notes in your first language!)
      3.    Submit these notes without editing. If you took notes by hand, take a photo or scan them in. 
      4.    Be prepared to discuss this in class!

Access control w4discussion

 Assignment Requirements

Read the worksheet named “Mapping Business Challenges to Types of Control” and address the following:

Question

Using what you have learned about access controls, identify the business impact of the challenge, and identify an access control method that will mitigate the impact to the business.

Instructions:

Initial post with 250-300 words

two peer reply post with  100-150 words.

please assignment should be in proper APA format

references should be properly cited.

Develop a Java application that plays

  

Develop a Java application that plays a “guess the number” game as described below.
a) Your application first gets a random number in the range 1-1000 inclusive (you might want to use Math.random() or the Random class).
b) The application then displays the following prompt (probably via a JLabel):
I have a number between 1 and 1000. Can you guess my number?
Please enter your first guess.
Post a textbox for the user to enter a number and post a message telling the user to hit ‘Enter’ after entering a guess in a textbox (probably using a JTextField).
c) Input the user’s guess in the code for a previously-registered event-handler method (consider using the event-handling approach discussed in the text, or the actionPerformed() method of class based on the ActionListener interface, which will require some additional research outside the text).
d) For the first guess, color the entire background red, meaning that they are getting warmer (you might want to use the setBackground() method for a container). If this is the second or later guess, and they are further from the correct number than the last guess, then color the entire background blue. If they get the correct number then color the background some other color than red or blue.
e) If the user guessed the number correctly, respond with their number, post a congratulatory message, get a new random number, and display a JButton to start a new game. Otherwise, to help the user close in on the correct number, post a message, with their guessed number, whether they are “TOO HIGH” or “TOO LOW” from the correct number, and whether they are “WARMER” or “COLDER” (this should match the background color). Also report the guess number of the next guess (e.g. “Enter guess number nnn”). You might want to use a concatenated string in JLabel for these incorrect guess messages.
f) The process is repeated each game until the user guesses the correct number. Be sure that you erase obsolete status messages.