Discussion – Information Governance

According to your readings, cloud computing represents one of the most significant paradigms shifts in information technology (IT) history, due to an extension of sharing an application-hosting provider that has been around for many years, and was common in highly regulated vertical industries like banks and health care institutions.  The author’s knowledge from their research continue to assert that, the impetus behind cloud computing lies on the idea that it provides economies of scale by spreading costs across many client organizations and pooling computing resources while matching client computing needs to consumption in a flexible, real-time version. 

Identify the issues and risks that pose concern to organizations storing data in the cloud –  briefly support your discussion.

Please make your initial post substantive. A substantive post will do at least two of the following:

  • Ask an interesting, thoughtful question pertaining to the topic
  • Answer a question (in detail) posted by another student or the instructor
  • Provide extensive additional information on the topic
  • Explain, define, or analyze the topic in detail
  • Share an applicable personal experience
  • Provide an outside source (for example, an article from the UC Library) that applies to the topic, along with additional information about the topic or the source (please cite properly in APA)
  • Make an argument concerning the topic.

At least two scholarly source should be used in the initial discussion thread. Be sure to use information from your readings and other sources from the UC Library. Use proper citations and references in your post.

References:

 

Textbook: Chapter 15 – Information Governance for Cloud Computing

A Comparative Study of Data Deduplication Strategies. (2018). 2018 First International Conference on Secure Cyber Computing and Communication (ICSCCC), Secure Cyber Computing and Communication (ICSCCC), 2018 First International Conference On, 68. Retrieved from https://ieeexplore.ieee.org/document/8703363?arnumber=8703363

 Patricia C. Franks. (2015). New Technologies, New Challenges: Records Retention and Disposition in a Cloud Environment, 39(2), 191–209.

Schmidt, P. J., Wood, J. T., & Grabski, S. V. (2016). Business in the Cloud: Research Questions on Governance, Audit, and Assurance. Journal of Information Systems, 30(3), 173–189. https://doi.org/10.2308/isys-51494

Assignment 400 words 3 references

Please discuss the case involving the United States of America versus Ross Ulbrecht. Please include what took place at the United States Supreme Court.

Note: Student writes a factually accurate discussion of the case involving the United States of America versus Ross Ulbrecht. 

Qualitative Data Collection Instrument

 

Using the topic and research question you developed in week 1, you will design a qualitative instrument that could potentially answer your topic/research question if it were to be applied to a qualitative study. Keep in mind, this may take some stretching if you wrote your question leaning quantitatively. The purpose here is not to box you in but to ensure that you have a solid understanding of both methodologies.

Directions:

You will develop a word document to include:

  1. View the rubric and examples to make sure you understand the expectations of this assignment.
    1. Rubric for Data Instrument.docx
    2. Qualitative Instrument Samples.pdf
  2. Your research question in the form of a qualitative question (if it was not already).
  3. An instrument or protocol (interview, ethnography, focus group protocol, etc) that could be used to answer the qualitative version of your research question.
  4. A one paragraph description/justification of how your chosen instrument/protocol is the best choice for answering the qualitative version of your research question.

Wk 5 – Apply: Summative Assessment: Request for Proposal

 

This week you take on the role of the Senior IT Project Manager for the organization you chose in Week 1. In this position, your responsibilities may include proficiently working with a variety of technologies, conducting meetings with stakeholders, creating and forecasting budgets, and designing project plans. 

The CIO of your chosen organization wants the organization to purchase and integrate 6 new web servers. The CIO envisions more business travelers using the Internet to purchase airline tickets and reserve rental cars and hotel rooms for business trips. Expansion of your company’s web capacity is needed. 

Research information about your chosen organization to complete this week’s assignment. 

Create a 3- to 5-page request for proposal (RFP) in Microsoft Word for the CIO, which will minimize procurement-related risks for this project. Include the following components in the RFP: 

  • The purpose of the RFP 
  • The organization’s background as it applies to the use of the request for new web servers 
  • An analysis of procurement risks 
  • Methods for managing procurement risks 
  • Basic requirements for the current and new hardware and software 
  • Software and hardware environment 
  • A statement of work/requirements and schedule information 
  • The process for evaluating the RFP 

Include APA-formatted citations to support your assignment. 

Write a program that includes two functions

  

Program #4

Write a program that includes two functions. The First (named isPerfect) receives no parameters and does not return any parameters. It simply calculates and prints all the perfect numbers between 1 and 10000. A perfect number is a number whose sum of its divisors (not including the number itself) add up to the number

Determine through processing and print each perfect number and its divisors from 1 to 10000 (there are only 4). Pause the screen and clear the screen between outputs. The output for each perfect number should be like the following example.

6 is perfect. Its divisors are 

1, 2, 3

The second function (named isPrime) that receives an integer as a parameter and returns a boolean that indicates whether the number is prime or not. Allow the user to enter a number between 2 and 10000 and printout whether it is prime or not. Example of prompts and output

Please enter an integer and I will tell you if it is prime: 19

19 is prime

Would you like to do another (y/n)? y

…clear screen

Please enter an integer and I will tell you if it is prime: 21

21 is not prime

Would you like to do another (y/n)? n

…end the program

Clear the screen between runs. Do not rerun the perfect code, just the prime.

Make sure you use function prototypes and no globals. Make sure your output is like the above.

Check for invalid input for the prime. If an invalid number is entered, display an error message and then go to the prompt that asks whether he wants to do another.

Name the program numbers.cpp

Create a function that accepts

  

Exercise 1:
Create a function that accepts a single array as an argument. Given an array of integers, x, sort x and split the integers into three smaller arrays of equal length. If the length of x is not evenly divisible by three, increase the size of the smaller arrays by one starting from the first array. The function should return an array of arrays. Example: Input = [2,1,3,4,7,5,9,6,8,13,12,11,10,0,15,16,14] Output = [ [0, 1, 2, 3, 4, 5], [6, 7, 8, 9, 10, 11], [12, 13, 14, 15, 16] ]Exercise 2:
Write a function that find the frequency occurrence of a letter in a sentence. The function should return an integer. (Do not use the str.count() default python function) Examples: find_frequency(“t”, “this is a test”) → 3 find_frequency(“y”, “this is a test”) → 0Exercise 3:
Write a function that identifies if an integer is a power of 2. The function should return a boolean. Explain why your function will work for any integer inputs that it receives. Examples: is_power_two(6) → false is_power_two(16) → true