E-Commerce

Case Study: Marketing Strategies

Use amazon.com for below question

Prompt: In approximately one and a half to two pages total,  provide your analysis of the site(AMAZON.COM) and if the site (the site you went to) incorporated any or all of the marketing Strategy tips identified in the video. Identify those strategies the site incorporated and those that the site could benefit from. Explain your rationale.

Video Link: https://www.youtube.com/watch?v=7HgGiCK33ow

Your word document should have the following;

  • Title page, with your name, class, date, and assignment identifier and URL of the site you used for analysis for this assignment
  • Body of the paper (one or two pages) double spaced, 12 point font, New Times Roman, 1 inch margins all sides
  • References  should be identified/listed on a separate page (last page of submission). All references must follow APA format.

Research paper

  

Question 1) Summarize what you have learned in your coursework about your special area. Be sure to discuss how the literature interacts with your own experience on job if any

  

Question 2) Choose a topic in your area of specialization ( blockchain, cybersecurity or forensic) and describe whether a qualitative or quantitative research study would be more appropriate.

Question 3 ) identify and explain three IT leadership models and how each can positively influence behaviors in an organization. 

The answers for each question  should be more than 750 words  need to concentrate on goals from the courses infotech import from strat plan, Emerging threats and countermeasures, infotech in the global economy, information governance, enterprise risk management, and Data Science & Big data Analysis

Module 2 Lab – Steganography (Part B)

In this lab, you will be conducting steganography techniques by using various tools. You will be performing the following tasks:

1    Hiding a hidden message within a picture

2   Hiding multiple files within an image file

3   Hiding a text file within an audio file

 

Submit a word document containing an analysis and a summary of the completed lab (part A). The word document should contain the following elements:

  • Summary of the lab
  • Analysis of the activities performed in the lab and their importance to the course topics
  • How the lab relates to the course and current module topics
  • Related concepts from the module readings and lectures
  • At least one external reference
  • 1-3 pages in length
  • Proper APA formatting and citations
  • Minimum of 1-3 references are required

Nework Analogy, PLEASE READ!

 

In this assignment, you will write up your own network analogy.  The analogy in the lesson used snail mail (included below for your review) so you will make your own using some other concept. For example, you could go big as a country or go smaller and use a school, office, your home, or something else. The more creative the better but it must be clear that you understand the flow of information. Make sure to reference the TCP/IP model and use other terms that you learned in this module. Additional independent research is strongly encouraged for any terms or concepts that you are not completely clear on.

  1. Review the module sections, do some research and then some brainstorming and develop a network analogy like the one in the module and shown below.
  2. You will need to demonstrate that you understand the terminology and the flow of the information and how each stage of information flow works.  You must explain in some detail what is occurring at each ‘stop’, how, and why when possible.
  3. Submit your analogy in well-formed sentences and paragraphs.

Minimum requirements:

  • A minimum of three full paragraphs.
  • Submit only one document via the link title above.
  • Use paragraph structure. Use complete sentences and proper grammar and spelling.
  • Include a cover page that contains your group name, the assignment name, the names of all group members and the course code from page two of the syllabus.
  • Your document must be one of the following formats (.doc, .docx, or .rtf).
  • Cite any and all sources.

Internet Research Assignment #1: Cybercrimes

Ransomware attacks on the United States, state and local governments since 2013 and are increasing at an alarming rate. Research ransomware attacks on three federal or state jurisdictions, with one of them being the City of Baltimore.

For this assignment, you are to describe ransomware, what impact did these attacks have on the three jurisdictions in terms of cost and lost revenue, did these municipalities pay the ransom amount demanded or did they try and recover from the attack without paying the ransom. If so, how much did the data recovery cost the municipality, and lastly, what would you do if you were the governor or mayor of this ransomware attack…pay or not pay.

This paper should be at least three pages long, double spaced, with your name, date, and title included as a header, page numbering in the footer in the form of page x of y, and have references cited per APA formatting guidelines. You must use a minimum of five references and none of them can be Wikipedia.

Final

Select any example visualization or infographic and imagine the contextual factors have changed:

  1. If the selected project was a static work, what ideas do you have for potentially making it usefully interactive? How might you approach the design if it had to work on both mobile/tablet and desktop?
  2. If the selected project was an interactive work, what ideas do you have for potentially deploying the same project as a static work? What compromises might you have to make in terms of the interactive features that wouldn’t now be viable?
  3. What about the various annotations that could be used? Thoroughly explain all of the annotations, color, composition, and other various components to the visualization.
  4. What other data considerations should be considered and why?  
  5. Update the graphic using updated data, in the tool of your choice (that we’ve used in the course), explain the differences.

Be sure to show the graphic (before and after updates) and then answer the questions fully above.  This assignment should take into consideration all the course concepts in the book.  Be very thorough in your response.  The paper should be at least three pages in length and contain at least two-peer reviewed sources.

Clojure Programming Assignment

1. (5 points) In Clojure, implement Quicksort. Do so in a function called quicksort with one argument, a vector of numbers. The function returns a sequence of sorted numbers. For example (quicksort [2 6 1 9 1]) returns (1 1 2 6 9). 

2. (5 points) In Clojure, implement Mergesort. Do so in a function called mergesort with one argument, a vector of numbers. The function returns a sequence of sorted numbers. For example (mergesort [2 6 1 9 1]) returns (1 1 2 6 9). 

3. (5 points) Test the two functions to ensure they sort correctly. 

4. (5 points) Implement Quicksort and Mergesort in any other language and make sure they sort correctly. 5. (5 points) In both languages, time your quicksort and merge sort functions on a sorted list of 1,000,000 numbers. Time them on a reverse sorted list of 1,000,000 numbers. If 1,000,000 numbers are not enough to see a difference between the two algorithms, increase the input size. 

6. (15 points) Evaluate your results. Which program was faster on the sorted input? Was it also faster on the input that was in reverse sorted order? Is the result the same in both languages? Explain your results. Were the results as expected? Can you say anything about the languages used for sorting in terms of performance and ease of implementation? 

7. (Extra Credit 5 points) Compare the performance of your implementations in both languages with the performance of the built-in sort function in each language. Explain the result.