Ten Strategies of a World-Class Computer Security Incident Response Team

After watching the video, Ten Strategies of a World-Class Computer Security Incident Response Team,

Watch VideoShmooCon 2013: Ten Strategies of a World-Class Computer Security Incident Response TeamDuration: (33:53)

Reding Health Group High-Level Design

Follow instructions for Week 2
 
Create an annotated high-level design enterprise network diagram for Reding Health Group.
Review the Reding Health Group Enterprise Network Project Overview document to learn the network requirements.
Create a high-level design diagram for Reding Health Group that includes the following:
Annotations marking customer requirements
Planned design roadmap that includes proposed methodology, phases, and technologies
High-level technical design
Create your diagram in Microsoft Visio.
Document customer requirements and other information in a Microsoft® Word document if the Visio® annotations become too crowded.

West Consulting Modular Design Proposal

To continue the network design to support the growth and expansion plan of West Consulting this week, you will create a modular design diagram and proposal summary.
Reference the West Consulting Network Design Summary document and your completed Week One Individual Assignment titled, “West Consulting Customer Design Summary” when completing this task.
Create a Modular Design Proposal that includes the following:
A diagram of your proposed hierarchical enterprise network that illustrates the relationships between the access, distribution, and core layers using the implementation plan created in your Week One Individual Assignment titled, “West Consulting Customer Design Summary.”
A summary that details the following:
The Cisco® design principles and approach you will use to support this project and its diverse requirements
The steps the you will take to ensure the project plan and network design address West Consulting’s long-term strategic plans and goals
Areas of specific concern related to the nature of the graphics data (traffic types, bandwidth, etc.) and relevant industry best practices you will follow to incorporate in addressing these potential concerns
A summary of how your design meets modularity, resiliency, and scalability for future growth
Diagram your enterprise network design in Microsoft® Visio®.
Document the remainder of your Design Proposal as:
An 8-slide Microsoft® PowerPoint® presentation with detailed speaker notes

create a Return on Investment (ROI) analysis comparing the cost of 10 physical servers to the cost of 10 virtual servers running on Hyper-V®

Using Microsoft® Excel® to do your calculations, create a Return on Investment (ROI) analysis comparing the cost of 10 physical servers to the cost of 10 virtual servers running on Hyper-V®. Use any applicable brand and model of server hardware.
Deliverables will be:

  • A 1-page analysis based on your calculations explaining the results. Analysis should be in APA format.
  • A spreadsheet showing your cost analysis.

Apple Cloud and its functionality and capabilities

CIS 336 Week 5 Discussion

1. What is a Cloud” Please respond to the following:
· So, what is Cloud? Cloud is a set of pooled resources delivered over the internet. Cloud allows you to deliver services globally to your customers at the least cost, and with the ability to service a variable workload by scaling the underlying resources up and down to meet the needs of the moment, and at the cost only of the resources consumed.
· From this week’s video, list the Apple Cloud and define its functionality and capabilities.
2. “Essential Characteristics of the Cloud” Please respond to the following:
· On-demand, broad network access, resource pooling, rapid elasticity, measure service, charge by usage (“pay as you go”) are the essential characteristics of the Cloud.
· From this week’s video, describe essential characteristics to the cloud.
125 words min each question. No need for coversheet.

Haskell programmers

Haskell programmers


Questions 4-6 refer to the contents of HW2.lhs. Include two files in your submission: a text file with the answers to questions 1-3, and the completed HW2.lhs file.
1. (3 points)
Imagine you’re given an interpreter for C++ and asked to build a compiler from C++ to x86 machine code that implements the same semantics as the interpreter. What does it mean to claim your compiler is correct? How would you test this claim?
2. (4 points)
Consider the following Haskell code:
data Shape = Circle Double | Rect Double Double
area :: Shape -> Double
area (Circle radius) = 3.1415 * radius * radius
area (Rect width height) = width * height
Write out the full sequence of tokens in this program, in the order that they appear.
3. (8 points)
For each of the first four phases of a typical compiler pipeline (source input, lexical analysis, parsing, and semantic analysis), describe a small specific change that you could make to the code in question 2 that would trigger an error in that phase (and not any previous phase). Justify each answer. (You might find it helpful to copy the code into a Haskell file and load it in an interpreter to try to trigger errors there.)
4. (4 points)
Fill in the definitions of the Sing and (:.:) cases for the “check” function.
5. (2 points)
Fill in the definition of the “star” function.
6. (6 points)
Write at least three more regexes and at least two tests for each that demonstrate that “check” and “star” are working correctly.