In: Computer Science
1b. Explain each of the following with an example in two languages of your choice for each item. (25 points)
Orthogonality
Generality
Uniformity
In: Computer Science
Assignment # 6: Chain of Custody Roles and Requirements
Learning Objectives and Outcomes
Assignment Requirements
You are a digital forensics intern at Azorian Computer Forensics, a privately owned forensics investigations and data recovery firm in the Denver, Colorado area. Azorian has been called to a client’s site to work on a security incident involving five laptop computers. You are assisting Pat, one of Azorian's lead investigators. Pat is working with the client's IT security staff team leader, Marta, and an IT staff member, Suhkrit, to seize and process the five computers. Marta is overseeing the process, whereas Suhkrit is directly involved in handling the computers.
The computers must be removed from the employees' work areas and moved to a secure location within the client's premises. From there, you will assist Pat in preparing the computers for transporting them to the Azorian facility.
BACKGROUND
Chain of Custody
Evidence is always in the custody of someone or in secure storage. The chain of custody form documents who has the evidence in their possession at any given time. Whenever evidence is transferred from one person to another or one place to another, the chain of custody must be updated.
A chain of custody document shows:
The chain of custody requires that every transfer of evidence be provable that nobody else could have accessed that evidence. It is best to keep the number of transfers as low as possible.
Chain of Custody Form
Fields in a chain of custody form may include the following:
For each evidence item, include the following information:
For this assignment:
In: Computer Science
Write the code for binary min heap in c++ .
In: Computer Science
write a C program to display the dimensions of a room along with number of doors and number of windows. make it user prompt including a function.
In: Computer Science
Consider a company which owns a license of Class C network
(207.84.123.0), This Company wants to create 14 subnetworks.
1.
Determine the number of bits borrowed
2.
How many bits are then used for the subnet ID?
Determine the maximum number of hosts in each subnet
3.
Determine the subnet mask of this scheme
4.
Determine the first, the forth and the last network (subnet)
addresses
5.
Determine the first host address, the last host address and the
broadcast address in only the first subnet.
6.
7. To which subnet belongs the host having the address
207.84.123.181?
In: Computer Science
Suggest with proper explanation 10 reasons about which web framework is likely to at the forefront of technology in the next decades.
NOTE: NO plagiarism from the internet it should be typed in your OWN WORDS PLEASE.
In: Computer Science
The company decided to hire you to be its new Director of Information Security.
In: Computer Science
i want three research question in PICOC model on the following key topics
Key Concepts: Optimization Techniques, Resource Scheduling,
Scheduling Algorithms, Cloud Computing, Scheduling Strategies,
Cloud Security
General Topic: Resource Scheduling in cloud computing
Who: Small scale industries
What: scheduling algorithms
When: current situation
Where: Software Industries
In: Computer Science
A) Based on what the Federal Information Processing Standard 199 (FIPS-199) requires information owners to classify information and information systems? Provide a detailed answer.
B) Are there any differences between classifying governmental information and commercial information? And are there any common levels of classification have been used to classify governmental information and commercial information? Explain your answers and supported them with examples (NOT from the book or slides).
C) Can a company make a change on classified information? Assuming now a company feels that such information need higher protection or the company decide to make some information that was classified as secret to be accessed by public. Here, is there any mechanism or process that allows a change in classified information. Explain your answers and supported them with examples (NOT from the book or slides).
In: Computer Science
In need of assistance in C++ code:
Design and implement class Rectangle to represent a rectangle object. The class defines the following attributes (variables) and methods:
Now design and implement a test program to create two rectangle objects: one with default height and width, and the second is 5 units high and 6 units wide. Next, test the class methods on each object to print the information as shown below.
Sample run:
First object:
Height: 1 unit
Width: 1 unit
Area: 1 unit
Perimeter: 4 units
Second object:
Height: 5 unit
Width: 6 unit
Area: 30 units
Perimeter: 22 units
Thanks in advance!
In: Computer Science
Create a module to calculate the amount of royalties that Parker Schnabel must pay Tony Beets at the end of the gold mining season based on the following contractual agreement. When the amount of gold mined is 3000 ounces or less the rate is 15% of the gold value. This lower royalty rate is stored in a variable named lowerRate. When the amount of gold mined is greater than 3000 ounces the royalty rate is 20%. This higher rate is stored in a variable named goldRushRate and is applied only to the amount over 3000 ounces. The price of gold is currently $1200.00. This amount is stored in a variable defined as priceGold. The number of ounces mined is stored in a variable integer ouncesMined. You should ask Parker to input the number of ounces that he mined this season and print out “Based on x ounces mined, you paid y in royalties.” You will need to multiply the ounces of gold mined by the price by the royalty rate to produce the proper royalties.
In: Computer Science
I need an app ideas for social distancing due to covid-19
In: Computer Science
Systems Analysis
8. Explain how Agile techniques for systems analysis and design are different from the structured or other object oriented methodologies. Discuss the advantages and disadvantages of the methods and the conditions under which you would use them. (25 points)
In: Computer Science
PYTHON PROGRAM
QUESTION 1
Briefly describe how a while loop works
QUESTION 2
Compare and contrast a while statement and an if statement ?
QUESTION 3
What is a loop body?
QUESTION 4
What is the value of variable num after the following code segment?
num = 10;
while num > 0:
num = num -1;
QUESTION 5
What is the value of variable num after the following code segment is executed?
var num = 1
while num >10:
num = num -1
QUESTION 6
Why the loop does not terminate?
n = 10
answer = 1
while n > 0:
answer = answer + n
n = n + 1
print(answer)
QUESTION 7
Convert the following for loop to a while loop.
total = 0
for i in range(10):
total = total + i
print(total)
QUESTION 8
Write a while loop to display from 0 to 100, step up 5 each time.
0, 5, 10, 15, 20, ... , 100
In: Computer Science