A research project will give the graduate student an opportunity to bring the information and concepts learned in the course to bear on a topic of concern. The research work should documented in the form of an analytic research paper, which includes a review of the recent literature of a topic approved by the professor. The research project should review the literature, distill the primary issues, discuss the various possible solutions to the issues raised, identify “trends,” and formulate a position. The final output is a paper, 10-12 pages double-spaced, exclusive of cover, title page, table of contents, endnotes and bibliography. The paper must use APA formatting and reference citations with the exception that tables and figures can be inserted at the appropriate location rather than added at the end. My topic is Cloud computing security.
Category: Internet technology (IT)
-
Title: “Comparative Analysis of Cloud Service Models and Their Security Services”
I will narrate.
In this project, the CEO of Best Clothes Online Inc. (BCO) has asked you to
develop a detailed comparative analysis of cloud service models and their
security services. A comparative analysis provides an item-by-item
comparison of two or more alternatives, processes, products, or systems.
In this scenario, you will compare the pros/cons of cloud service models in
terms of security responsibilities and level of control between cloud
consumers and Cloud Service Providers.
Questions from the CEO to answer:
What are the differences between IaaS, PaaS, SaaS in terms of shared
responsibility between cloud consumer and Cloud Service Provider?
What are the pros/cons of each model?
What security services are offered by each model?
How can each model be used to support Disaster Recovery?
How do the costs compare between models?
Which model is considered better for small, medium, and large
businesses?
You will present your findings to the owner of the company in a narrated
PowerPoint presentation with 15 to 28 slides. Use the Cloud Security
Presentation Template.
Presentation Guidelines
It is recommended to use the Cloud Security Presentation Template.
Your presentation should be comprised of the following:
One slide to introduce the presentation and describe what is a Shared Responsibility Model (SRM)
One to two slides on the SRM for IaaS
One to two slides on the Security Services of IaaS
One to two slides on how IaaS can be used to support Disaster Recovery
One to two slides on the pros/cons of IaaS
One to two slides on the SRM for PaaS
One to two slides on the Security Services of PaaS
One to two slides on how PaaS can be used to support Disaster Recovery
One to two slides on the pros/cons of PaaS
One to two slides on the SRM for SaaS
One to two slides on the Security Services of SaaS
One to two slides on how SaaS can be used to support Disaster Recovery
One to two slides on the pros/cons of SaaS
One slide on the conclusion.
One to two slides for references used for the presentation
All slides must be narrated by you, the student, covering 15–28 slides. -
Title: A Comprehensive SWOT Analysis of Word Link: Exploring the Strengths, Weaknesses, Opportunities, and Threats of the Popular Word Game
Please create a 11 page power point presentation base off of the SWOT analysis essay on word link provided.
-
Title: Managing Printer Interfaces on Your System
Create a presentation in PowerPoint that discusses how to download, change, and install printer interfaces on your system.
Show screen captures of what happens when your printer is not detected.
Add a slide that explains the pitfalls of managing printers for a network.
This assignment should be a minimum of ten slides in length
Remember: Title, References, images only, and “any questions” slides DO NOT count for the minimum!
Use the rule of 7 when building your slides (more than 7 points on any one slide and it gets too wordy or overloaded with information) -
Title: “The Hate U Give: A Journey of Dual Worlds and Social Injustice”
IT project
The five slides make a fake or real website for a company regarding a homepage about us page, Location page, service page, product page. also add pictures or a YouTube video
and answer the questions below
Chapter 21 (15 points)
What are the Carter family and their friends celebrating?
How are Starr’s two worlds beginning to mix and how is she dealing with it?
How did Big Mav choose names for his children?
Chapter 22 (5 points)
How is the new neighborhood different from Garden Heights?
Chapter 23 (15 points)
How does Garden Heights react to the Grand Jury’s decision?
How does Angie Thomas show the continuation of a cycle of hate? In other words, how has Khalil’s death created a chain reaction of violence and negativity? How are the riots in Garden Heights getting out of hand?
Chapter 24 (10 points)
What problem does Seven’s car have? How do they try to solve this?
Who is leading the protest they encounter?
Chapter 25 (5 points)
1. Who’s responsible for destroying Big Mav’s store?
Chapter 26 (5 points)
1. What happens with Starr and Hailey’s friendship? Do you think Starr did the right thing?
YOUR FINAL THOUGHTS on Angie Thomas’ The Hate U Give: Please write a few sentences providing your ultimate critique/analysis of this book; what is the ultimate message behind the book? Did you enjoy reading it? Was the ending predictable? Did you dislike the ending? Please tell all! 🙂 (20 points) -
“Creating a Staging Table for Skeleton Candy Sales Data from 2017-2019 using SQL”
Use SQL.
–Skeleton Candy Part 1 – extract from 2017, 2018, 2019 tables and put into stagingTable
–Students, see notes below where it says –you need to fill this in here
–Create the staging table
DROP TABLE IF EXISTS stagingTable;
CREATE TABLE stagingTable (
yearInt INT(4),
monthInt INT(2),
–there will be more you need to fill in here
);
–Insert 2017 Data
INSERT INTO stagingTable(“monthInt”, “state”, “country”, “region”, “Product_Name”, “unitPrice” –you need to fill this in here)
SELECT “Month”, “State”, “Country”, “Region”, “Product”, “Per-Unit_price”, “Quantity”, “Order_Total” FROM pd2017
;
UPDATE stagingTable SET yearInt=2017;
–Insert 2018 Data
INSERT INTO stagingTable( — you need to fill this in here –)
SELECT … FROM pd2018
;
UPDATE stagingTable SET yearInt=2018 WHERE yearInt ISNULL;
–Insert 2019 Data
INSERT INTO stagingTable(– you need to fill this in here –)
SELECT … FROM pd2019
;
UPDATE stagingTable ( — you need to fill this in here );
SELECT * FROM stagingTable;
That is the ·
Candy_part_1_skeleton_for_students.SQL