Summary of your project and the most significant forensics data you were able to observe in the image you analyzed through RegRipper and FTK?
Should be 300 words without References.
APA Format Required
Summary of your project and the most significant forensics data you were able to observe in the image you analyzed through RegRipper and FTK?
Should be 300 words without References.
APA Format Required
If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23.
Find the sum of all the multiples of 3 or 5 below 1000.
Do this using 2 methods.
Print the resulting sum each time.
The below snippet of code will download daily closing prices for SPY, which is an ETF that tracks the price S and P 500.
Using a for loop and enumerate, create a list of 5 period moving averages. For instance, the first 5 values of the list are [321.56, 319.12, 320.34, 319.44, 321.14]
and the average is 320.32
. This means the first entry in our new list would be 320.32
.
Make your own udf to calculate the mean and use this in the for loop.
Print last 5 items of the list and the sum of the list of 5 period moving averges.
In [89]:
import yfinance as yf
SPY = yf.download('SPY')
SPY = yf.Ticker('SPY')
spy_lst = SPY.history(start="2020-01-01", end="2020-02-01")["Close"].tolist()
print(spy_lst[0:5])
print(sum(spy_lst[0:5])/5)
[*********************100%***********************] 1 of 1 completed
[321.56, 319.12, 320.34, 319.44, 321.14]
320.32
Consider the list of transactions, where each inner list item is a line item on a recipt. For instance, the first inner list ["A", "item_a"]
indicates "A"
bought "item_a"
. Iterate the list and return a dictionary where the key is the user id (A, B, C, D) and the values are a list of items the user bought.
The desired output for "A"
can be seen in the sample_dct
.
Do not include the first item in the list, ["User", "Item"]
, which can be considered a header.
Be sure your solution is scalable, meaning it should be sustainable for a list of transactions of any size.
Print the dictionary out at the end.
In [13]:
transactions = [
["User", "Item"],
["A", "item_a"],
["B", "item_a"],
["C", "item_a"],
["C", "item_b"],
["C", "item_c"],
["B", "item_c"],
["D", "item_b"],
["D", "item_b"]
]
sample_dct = {
"A": ["item_a"]
}
A string can be sliced just like a list, using the bracket notation. Find the 3 consecutive numbers and their index positions that have the greatest sum in the number 35240553124353235435234214323451282182551204321
.
As an example, the the string "1324"
has 2 three number windows, 132
and 324
. The first sums to 6
and the later sums to 9
. Thus the 3 numbers would be [3,2,4]
and the indices would be [1,2,3]
.
Print out the 3 numbers, the 3 indices where they occur and their sum.
In [14]:
sample = "1324"
# results should be
numbers = [3,2,4]
max_val = 9
index_vals = [1,2,3]
In [15]:
a = "35240553124353235435234214323451282192551204321"
The sum of the squares of the first ten natural numbers is
The square of the sum of the first ten natural numbers is
Hence the difference between the sum of the squares of the first ten natural numbers and the square of the sum is
Write a function, or collection of functions, that find the difference between the square of sums and sum of squares from 1 to n
. Note, to solve the problem you have to:
This can be broken up into smaller functions, with one function making use of the smaller ones, or all be done in one function.
Add an assert statement to your function, to make sure the input is a positive int
.
Test the function using n=12
and n=8
and print the results.
Make a function, or group of functions, to find outlier datapoints in a list. The outlier should be based on the standard deviation, giving the user some ability to control the outlier threshold. For instance, setting 2 standard deviations or 3 from the mean should be possible. Note, to solve this problem you will have to:
(x-mean)/std
Test your data using the below stock price data for TSLA. Keep the same data range as is coded in below.
The standard deviation can be calculated as such (https://numpy.org/doc/stable/reference/generated/numpy.std.html):
std = sqrt(mean(abs(x - x.mean())**2))
Print out the average, standard deviation, outliers and the index position of where the outliers occur.
Again, this can be done in one big function or a collection of smaller ones that are then used inside a final function to find the outliers.
NOTE: ASIDE FROM CHECKING WORK, THE ONLY PIECE OF IMPORTED CODE TO BE USED IS sqrt
from math
and the imported data from yfinance
.
In [73]:
import yfinance as yf
from math import sqrt
TSLA = yf.download('TSLA')
TSLA = yf.Ticker('TSLA')
tsla_lst = TSLA.history(start="2019-01-01", end="2020-04-01")["Close"].tolist()
[*********************100%***********************] 1 of 1 completed
Make a class to profile a list of data. Include methods to do the below:
data
that is a list of data.self
and overrides the value of the data
attribute.n
period moving average.n
period cumulative sum.The standard deviation can be calculated as such (https://numpy.org/doc/stable/reference/generated/numpy.std.html):
std = sqrt(mean(abs(x - x.mean())**2))
Zscore conversions can be checked using the below:
Test a few of your methods on the SPY data from yfinance
above.
NOTE: ASIDE FROM CHECKING WORK, THE ONLY PIECE OF IMPORTED CODE TO BE USED IS sqrt
from math
and the imported data from yfinance
.
Student feedback is very important to us at University, please list anything that would like to see changed in this course and how it will improve the learning experience for students.
Write some thing about this course and some points regarding the question.
Paper
Paper
12-15 Slides
The differences between and advantages of MAC, DAC, and RBAC.
Include at least 3 quotes from your sources enclosed in quotation marks and cited in-line by reference to your reference list. Example: “words you copied” (citation) These quotes should be one full sentence not altered or paraphrased. Cite your sources using APA format. Use the quotes in your paragaphs. Stand alone quotes will not count toward the 3 required quotes.
Course: Operational Excellence
100 Points Possible(**** extra care please)
Individual Effort Only!
APA 7 format is required – USE THE APA TEMPLATE.
Each question below must be addressed in your paper. Use an in-text heading to identify each question (Do not restate the question as the heading-use a topic heading instead). Each question must also be supported with appropriate APA7-formatted citations that match full references at the end of the paper. Each section should be at least 2-3 paragraphs in length.
The readings for this week discuss business processes and technology tools that can be used to help manage them effectively. Review the article below, and address the following questions in your paper:
Williams, C. (2019). The importance of IT process management: White paper. Retrieved from https://pdfs.semanticscholar.org/903d/cca38680b28ac993dc35a94f0185d6ace2c7.pd
Assignment:
Provide a reflection of at least 500 words (or 2 pages double spaced) of how the knowledge, skills, or theories of Cloud Computing have been applied, or could be applied, in a practical manner to your current work environment, to include specific information about your assigned organization. If you are not currently working, share times when you have or could observe these theories and knowledge could be applied to an employment opportunity in your field of study.
Fireboy and Watergirl are an exciting series of adventure games developed by Oslo Albet and Jan Villanueva.
Fire, Water, Forest, Ice, Light, Wind, and Crystal, seven brand new temples for the official Fireboy and Watergirl series.
In each temple the boy and girl must run and jump between fire and water, you should know that Fireboy is immune to fire, so he can step freely in pools of boiling lava, but he must be careful from stepping into the water.
Watergirl is resistant to pools of water but gets hurt when stepping in the lava.
Let us join with two main characters on the journey to remote, dangerous temples, to seek unimaginable wealth.
The temple is full of sparkling diamonds waiting to be discovered only by the bravest.
Solve the puzzles, beat the times, and collect all the diamonds!
What are you waiting for?
Update Fireboy and Watergirl full series.
Use the W-A-S-D keys to control the Watergirl.
Use the Arrow keys to control the Fireboy.
Please summarize, in your own words, a description of enterprise risk management. Why do you feel ERM is different from traditional risk management?
Please Include at least one resource from below url
http://www.ucumberlands.edu/library
help in the attached project