By default, Docker containers are very secure. However, there are a number of ways you can add additional layers of security to harden your containers. For this week’s assignment, use the web and include at least four (4) different best practice techniques or additional security controls that can be used to secure containers. Include the action or control to be performed, why it’s important, how it works, what it will help to prevent, and how organizations will benefit from it. You may include the commands or steps required to enable the control. Your assignment should be 3 pages in length, with two or more references in APA Format cited in your response.
4s week 1 assignment IA
In 300 words
What is the weakest link in the security of an IT infrastructure? What are some of the strategies for reducing the risks?
No Copy Paste strictly and include references.
Write at least 500 words on fractional ownership and it's relation to cloud computing. Use at least one example from another industry.
Write at least 500 words on fractional ownership and it’s relation to cloud computing. Use at least one example from another industry.
Use at least three sources. 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.
Copying without attribution or the use of spinbot or other word substitution software will result in a grade of 0.
Write in essay format not in bulleted, numbered or other list format.
Do not use attachments as a submission.
CC W 1 D
Select from the following list four (4) topics and discuss. Use only 50-words max per topic to discuss and present your answer. The discussion questions this week are from Chapter 1 (Jamsa, 2013).Chapter 1 topics:
- Define and discuss cloud computing.
- Discuss how cloud computing has changed how companies budget for software solutions.
- Compare and contrast SaaS, PaaS, and IaaS, and provide an example of each.
- Define scalability and discuss how the cloud impacts it.
- List three advantages and three disadvantages of cloud computing.
- Define virtualization and discuss how the cloud impacts it.
- Describe three cloud-based solutions for individuals and three cloud-based solutions for businesses.
- Discuss how Web 2.0 has driven the growth of the web.
- Compare and contrast public, private, community, and hybrid clouds.
NOTE: You are required to use at least two-peer reviewed sources (besides your textbook) to answer the above questions.
Building an AI machine/Deep learning application
- Part 1 –
- Following is the link of the Project and Dataset :
https://www.analyticsvidhya.com/blog/2016/06/quick-guide-build-recommendation-engine-python/
- Run the code several times and show the intended output…you also need to EXPLAIN the output…
- You will also need to provide output for the following:
- Python file containing your code…
- Dimensions of the data…
- Sample of the data…
- Statistical summary of the data…
- Class distribution…
- One univariate and one multivariate diagram…
- Decision Tree…explain the best depth and why?…
- Results of training and new data, 80%-20% split…
- Accuracy report…what is it telling us?…
- Confusion matrix…what is it telling us?…
- Classification report…what is it telling us?…
- Results of training and new data, 50%-50% split…
- Accuracy report…what is it telling us?…
- Confusion matrix…what is it telling us?…
- Classification report…what is it telling us?…
- Part 2 – Updated Code…
- Now that you have a working base of code, let’s apply it to a “real world” scenario…
- Find an article or video that shows a potentially SIMILAR usage of the application you created in Part 1…
- Update the original application so that it “works” for the NEW application…
- In this “Movie Recommendation” project, you might find an article on “book recommendations” …you would then update the original program to handle the new scenario…
- YOU MUST UPDATE THE ORIGINAL CODE…do not provide entirely new code base.
- Run the code several times and show the intended output…you also need to EXPLAIN the output…
- You will also need to provide the same output for THIS application, as you did for the ORIGINAL application…specifically:
- Python file containing your code…
- Dimensions of the data…
- Sample of the data…
- Statistical summary of the data…
- Class distribution…
- One univariate and one multivariate diagram…
- Decision Tree…explain the best depth and why?…
- Results of training and new data, 80%-20% split…
- Accuracy report…what is it telling us?…
- Confusion matrix…what is it telling us?…
- Classification report…what is it telling us?…
- Results of training and new data, 50%-50% split…
- Accuracy report…what is it telling us?…
- Confusion matrix…what is it telling us?…
- Classification report…what is it telling us?…
Assignment 5
You shall write a C++ program that:
- Reads an arbitrary number of whitespace-delimited tokens from standard input.
- Determines and prints (to standard output) two decimal integer values:
- The number of input tokens that are valid Scrabble words (case-insensitive), i.e. those that can be found in /srv/datasets/scrabble-hybrid.
- The total number of points that all those words would be worth in Scrabble, according to the letter values in /srv/datasets/scrabble-letter-values.
Specific Requirements
- You may assume that the number of valid words and the total number of points will not exceed the range of an unsigned 64-bit integer.
- Open and read the contents of each relevant data file exactly once.
- Make sure to use STL components that will avoid any gross inefficiencies (excessive computation and/or storage) in your program. Your program should at least be able to process each of the example inputs below in no more than 5 seconds, on our server.
- Print the two integer values in the order specified above, and make sure your output contains no other numeric decimal values. Otherwise, the format of output is up to you.
Demonstrate Your Knowledge of Advanced SQL
This assignment will test your understanding of conditional logic, views, ranking and windowing functions, and transactions, as shown in the videos. The prompt includes 10 questions.
You will need to create your own test database and tables using the criteria below. Please submit your answers using only one file. The preferable format is a text file with a .sql extension. You can easily edit the file using a text editor such as Notepad ++, which is available online for free.
Prompt: A manufacturing company’s data warehouse contains the following tables.
Region
region_id (p)
region_name
super_region_id (f)
101
North America
102
USA
101
103
Canada
101
104
USA-Northeast
102
105
USA-Southeast
102
106
USA-West
102
107
Mexico
101
Note: (p) = “primary key” and (f) = “foreign key”. They are not part of the column names.
Product
product_id (p)
product_name
1256
Gear – Large
4437
Gear – Small
5567
Crankshaft
7684
Sprocket
Sales_Totals
product_id (p)(f)
region_id (p)(f)
year (p)
month (p)
sales
1256
104
2020
1
1000
4437
105
2020
2
1200
7684
106
2020
3
800
1256
103
2020
4
2200
4437
107
2020
5
1700
7684
104
2020
6
750
1256
104
2020
7
1100
4437
105
2020
8
1050
7684
106
2020
9
600
1256
103
2020
10
1900
4437
107
2020
11
1500
7684
104
2020
12
900
Answer the following questions using the above tables/data:
- Write a CASE expression that can be used to return the quarter number (1, 2, 3, or 4) only based on the month.
- Write a query which will pivot the Sales_Totals data so that there is a column for each of the 4 products containing the total sales across all months of 2020. It is OK to include the product_id values in your query, and the results should look as follows:
tot_sales_large_gearstot_sales_small_gearstot_sales_crankshaftstot_sales_sprockets6200545003050
3. Write a query that retrieves all columns from the Sales_Totals table, along with a column called sales_rank which assigns a ranking to each row based on the value of the Sales column in descending order.
4. Write a query that retrieves all columns from the Sales_Totals table, along with a column called product_sales_rank which assigns a ranking to each row based on the value of the Sales column in descending order, with a separate set of rankings for each product.
5. Expand on the query from question #4 by adding logic to return only those rows with a product_sales_rank of 1 or 2.
6. Write a set of SQL statements which will add a row to the Region table for Europe, and then add a row to the Sales_Total table for the Europe region and the Sprocket product (product_id = 7684) for October 2020, with a sales total of $1,500. You can assign any value to the region_id column, as long as it is unique to the Region table. The statements should be executed as a single unit of work. Please note that since the statements are executed as a single unit of work, additional code is needed.
7. Write a statement to create a view called Product_Sales_Totals which will group sales data by product and year. Columns should include product_id, year, product_sales, and gear_sales, which will contain the total sales for the “Gear – Large” and “Gear Small” products (should be generated by an expression, and it is OK to use the product_id values in the expression). To accomplish this, you need a CASE statement. The product_sales column should be a sum of sales for the particular product_id and year, regardless of what kind of product it is. The gear_sales column should be a sum of sales only in the case where the product is either “Gear – Large” or “Gear Small”. Else in the case that the product is neither “Gear – Large” or “Gear Small”, the value for gear_sales should be 0.
8. Write a query to return all sales data for 2020, along with a column showing the percentage of sales for each product. Columns should include product_id, region_id, month, sales, and pct_product_sales.
9. Write a query to return the year, month, and sales columns, along with a 4th column named prior_month_sales showing the sales from the prior month. There are only 12 rows in the sales_totals table, one for each month of 2020, so you will not need to group data or filter/partition on region_id or product_id.
10. If the tables used in this prompt are in the ‘sales’ database, write a query to retrieve the name and type of each of the columns in the Product table. Please specify the ‘sales’ database in your answer.
Organ Leader and Decision Making
This week’s journal article focuses on attribution theory and how it influences the implementation of innovation technologies. Two types of employee attributions are noted in the article (intentionality and deceptive intentionality), please review these concepts and answer the following questions:
- Provide a high-level overview/ summary of the case study
- Note how constructive intentionality impacts innovation implementations
- Find another article that adds to the overall findings of the case and note how attribution-based perspective enhances successful innovation implementations. Please be explicit and detailed in answering this question.
positive rights table
Complete a 1- to 2-page table using the Positive Rights Table Template provided comparing your opinion of the rights listed below to a corresponding ethical theory:
- The right to a higher education
- The right to private phone conversations
- The right to health care
- The right of a presidential or government candidate to receive time on television
List 1 ethical challenge that could impact a U.S. company that wants to acquire a non-U.S.-based company.
Research paper: Composition
According to Kirk (2016), composition is about how the elements will appear in your design.
Write a research paper that contains the following:
- Discuss the visual assets such as charts, interactive controls, and annotations that will occupy space in your work.
- Discuss the best way to use space in terms of position, size, and shape of every visible property.
- Data representation techniques that display overlapping connections also introduce the need to contemplate value sorting in the z-dimension, discuss which connections will be above and which will be below and why. Show example using any chart or diagram of your choice.
Reference
Kirk, A. (2016). Data Visualisation: A Handbook for Data Driven Design. Thousand Oaks, CA: Sage Publications, Ltd. (Chapter – 7 Interactivity)
INSTRUCTIONS.
1. No Plagiarism.
2. The submission date is Friday (07/17/20).
3. Atleast 3 references in APA format.
4. It should be at least 3 pages (800 words) excluding cover page and reference page.
5. Include a cover page and a table of content.