digital forensics – testimony

 

The topics of reporting and of expert witness testimony are critical aspects of digital forensics. In 250-500 words and using your own words, explain one thing that makes such reports and testimony more compelling.  Explain one risk that failing to write effectively could negatively impact your report or testimony.  Each of these two items should be in its own paragraph.  

APA format is not required for discussion posts, but if you do choose to use external references, you need to format them using the APA format and cite them in your post.

cloud security

 

  • Research a cloud security service. Some examples include: 
  • CloudFlare
  • Sophos Central
  • Trend Micro Deep Security
  • CipherCloud
  • Fortinet
  • Palo Alto
  • SiteLock
  • Proofpoint
  • In a Word document, identify the following and write a brief summary of what you learned in your research:
     
  • The features and functionality of the cloud security service
  • Who provides the service and billing/pricing options

Discussion 4 – 1

This week we focus on establishing your editorial thinking.  What does the author mean by editorial thinking?  Also, this week there was a video of Andy Kirk (2015) noting the key concepts of data visualization thinking.  Please pick one major concept from the video and note what was said and your thoughts about the topic. In response to peers, add to their thoughts on the video and their topic.

Implement the Java code for the Ticket

Implement the Java code for the Ticket inheritance hierarchy in IP1. Write a test application that instantiates at least one  of each subclass type and prints the contents. Use an overridden toString() method to provide a readable string representation of each subclass instantiated.

  use the debugger to set at least 2 breakpoints while testing your code. Submit at least 2 screenshots demonstrating your use of the debugger and your zipped NetBeans project.

Data Visualization using R tool assignment

  Review the attached file. Suzie has an issue. She can either move to NY or FL and needs to review some data that her agent gave her. The agent reviewed house prices and crime ratings for houses that Suzie would be interested in based on her selection criteria.  She wants to live in an area with lower crime but wants to know a few things:

  1. Is it more expensive or less expensive to live in FL or NY?
  2. Is the crime rate higher in FL or NY (Note a low score in crime means lower crime)?
  3. Is the crime rate higher in lower or higher house price areas?

Using the R tool, show the data in the tool to answer each of the questions.  Also, show the data visualization to go along with the summary.

  1. If you were Suzie, where would you move based on the questions above?
  2. After you gave Suzie the answer above (to #4), she gave you some additional information that you need to consider:
    1. She has $100,000 to put down for the house.
    2. If she moves to NY she will have a job earning $120,000 per year.
    3. If she moves to FL she will have a job earning $75,000 per year.
    4. She wants to know the following:
      1. On average what location will she be able to pay off her house first based on average housing prices and income she will receive?
      2. Where should she move and why?  Please show graphics and thoroughly explain your answer here based on the new information provided above.

      Note: The screenshots should be copied and pasted and must be legible.  Only upload the word document.  Be sure to answer all of the questions above and number the answers.  Be sure to also explain the rational for each answer and also ensure that there are visuals for each question above. Use at least two peer reviewed sources to support your work.  

PHP Date and Time

Using the sources provided you are to add functionality to search for all blogs written before a specific date. The framework for the assignment is set for you

      user.html                       Contains the HTML to prompt for a date

      blog_user.php               PHP code to parse the html form and call the function to search by date

     blog_db_interface.php  PHP code to perform the search

You will need to

      blog_user.php     

               Convert the date to a unix time stamp using strtotime()                         10 points

               Verify the strtotime return value. On error throw an exception              10 points

               Convert the unix time stamp to a date and time string using date()       10 points

               Verify the date functionality. On error throw an exception                      10points

               If all is OK then call the function to peform the search

     blog_db_interface.php

               Implement the SQL query to perform the search and display the results    

               Process errors from calling  “prepare”,  “execute” and “bind_results”

                            All errors should result in an exception thrown                                 10 points

               Search result should display “Blogger’s name”  “Blog Summary”                  10 points

What to turn in (as a single ZIP)

        Submit your modified source files: blog_user.php and  blog_db_interface.php