Artificial Intelligence Discussion

 What are the useful things that can be done with using natural language processing? 

Audacity is a free, open-source, cross-platform software for recording and editing sounds. It is available for both Windows, Mac, GNU/Linux, and other operating systems.

Initial Discussion: 300 words

Responses 4 : Each 300 Word

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

Scenario UMGC JM

Donyelle, the company owner, likes the idea of going to the cloud but wants to learn more about the best cloud solution for the company. She wants you to investigate further and has asked you to prepare a narrated PowerPoint presentation that will be presented to company leadership at the next meeting.

In this project, you will develop a detailed comparative analysis of cloud vendors and their services. A comparative analysis provides an item-by-item comparison of two or more alternatives, processes, products, or systems. In this case, you will compare the pros/cons of the cloud service providers in terms of security, ease of use, service models, services/tools they provide, pricing, technical support, cloud service providers’ infrastructure, and architecture model.

You will present your findings to the owner of the company in a narrated PowerPoint presentation with 10 to 20 slides. The presentation will be submitted next week. Use the Cloud Presentation Template.

Presentation Guidelines

Your presentation should be comprised of the following:

  1. One to two slides on the company profile.
  2. One to two slides on what the company is struggling with. 
  3. One to two slides on current infrastructure.
  4. Three to six slides on the top three cloud services providers. Include their service models (i.e., SaaS, PaaS, IaaS), services/tools/solutions (i.e., compute, storage, database, developer tools, analytics tools, networking and content delivery, customer engagement), pricing, accessibility, technical support for companies, global infrastructure.
  5. One to two slides on a recommended cloud service provider based on the comparative analysis and the cloud vendor’s abilities to meet the service needs of the company.
  6. One slide on the conclusion. 

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

Scenario UMGC JM

Donyelle, the company owner, likes the idea of going to the cloud but wants to learn more about the best cloud solution for the company. She wants you to investigate further and has asked you to prepare a narrated PowerPoint presentation that will be presented to company leadership at the next meeting.

In this project, you will develop a detailed comparative analysis of cloud vendors and their services. A comparative analysis provides an item-by-item comparison of two or more alternatives, processes, products, or systems. In this case, you will compare the pros/cons of the cloud service providers in terms of security, ease of use, service models, services/tools they provide, pricing, technical support, cloud service providers’ infrastructure, and architecture model.

You will present your findings to the owner of the company in a narrated PowerPoint presentation with 10 to 20 slides. The presentation will be submitted next week. Use the Cloud Presentation Template.

Presentation Guidelines

Your presentation should be comprised of the following:

  1. One to two slides on the company profile.
  2. One to two slides on what the company is struggling with. 
  3. One to two slides on current infrastructure.
  4. Three to six slides on the top three cloud services providers. Include their service models (i.e., SaaS, PaaS, IaaS), services/tools/solutions (i.e., compute, storage, database, developer tools, analytics tools, networking and content delivery, customer engagement), pricing, accessibility, technical support for companies, global infrastructure.
  5. One to two slides on a recommended cloud service provider based on the comparative analysis and the cloud vendor’s abilities to meet the service needs of the company.
  6. One slide on the conclusion. 

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

Scenario UMGC JM

Donyelle, the company owner, likes the idea of going to the cloud but wants to learn more about the best cloud solution for the company. She wants you to investigate further and has asked you to prepare a narrated PowerPoint presentation that will be presented to company leadership at the next meeting.

In this project, you will develop a detailed comparative analysis of cloud vendors and their services. A comparative analysis provides an item-by-item comparison of two or more alternatives, processes, products, or systems. In this case, you will compare the pros/cons of the cloud service providers in terms of security, ease of use, service models, services/tools they provide, pricing, technical support, cloud service providers’ infrastructure, and architecture model.

You will present your findings to the owner of the company in a narrated PowerPoint presentation with 10 to 20 slides. The presentation will be submitted next week. Use the Cloud Presentation Template.

Presentation Guidelines

Your presentation should be comprised of the following:

  1. One to two slides on the company profile.
  2. One to two slides on what the company is struggling with. 
  3. One to two slides on current infrastructure.
  4. Three to six slides on the top three cloud services providers. Include their service models (i.e., SaaS, PaaS, IaaS), services/tools/solutions (i.e., compute, storage, database, developer tools, analytics tools, networking and content delivery, customer engagement), pricing, accessibility, technical support for companies, global infrastructure.
  5. One to two slides on a recommended cloud service provider based on the comparative analysis and the cloud vendor’s abilities to meet the service needs of the company.
  6. One slide on the conclusion. 

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

2-3 paragraphs (Internet Research)

 In this module, you learned that random numbers (or, at least, pseudorandom numbers) are essential in cryptography, but it is extremely difficult even for powerful hardware and software to generate them. Go online and conduct research on random number generators. What are the different uses of these tools besides cryptography? How do they work? Explain your answer using your own words in 2-3 paragraphs 

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

project 1

 Problem Statement: We assume that the standard input contains a sequence of non-zero integers between – 121 and 121, which ends with 0. This sequence will be given by the user. 1. Write an algorithm, called Decomposition_Powers_Three, which produces the decomposition of each integer using powers of 3, namely 1, 3, 9, 27, and 81, and the + and – operators. Each power of 3 should appear at most once in the decomposition. Examples: 1 = 1 2 = 3 – 1 3 = 3 4 = 3 + 1 7 = 9 – 3 + 1 14 = 27 – 9 – 3 – 1 43 = 81 – 27 – 9 – 3 + 1 121 = 81 + 27 + 9 + 3 + 1 2. Show that the algorithm Decomposition_Powers_Three is correct using an informal proof (i.e., discussion). 3. Give a program corresponding to Decomposition_Powers_Three, using any of your favorite programming languages. Observation: The intervals [-121,-41], [-40,-14], [-13,-5], [-4,-2], [-1,-1], [1,1], [2,4], [5,13], [14,40], and [41,121] play a particular role. Deliverables: Students may choose to work in team of up to two members. You should turn in a report explaining all the design decisions and your code should be commented appropriately for readability and understanding. More precisely, a report should include the problem statement, proposed approach/solution along with a detailed discussion, algorithm (high-level description of all the design parts along with some details when necessary), commented code, tests (input given by the user and output generated by your program execution), and lessons learned from such an implementation experience.  

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

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.

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

Simulation 3

Now that you’ve seen all of the elements contributing to the Devil’s Canyon enterprise architecture, Justin wants to move forward with developing privacy policies to ensure videos aren’t distributed or uploaded to the net without the consent of the people in them. This opens a much larger conversation: Devil’s Canyon is also in need of a complete security plan, as well as risk assessments.

In a 2- to 3-page rationale and table, prepare the following information to present to the Devil’s Canyon team:

  • Explain the relationship between policies and security plans. Identify potential policy needs, noting Justin’s privacy policy, in relation to the Devil’s Canyon enterprise structure.
  • Outline the importance of a security plan in relation to security roles and safeguards.
  • Analyze at least 5 security-related risks/threats that Devil’s Canyon may face.
  • Assess the probability and impact to the Devil’s Canyon if each risk occurs. Based on these two factors, determine the overall risk level. For purposes of this assignment, evaluate and categorize each factor as low, medium, or high, and create a table to illustrate the risks. For example, a risk/threat with a low likelihood of occurrence and a high impact would represent an overall medium risk.
  • Consider digital elements mentioned in the designing of the enterprise architecture, such as software, hardware, proposed security measures, smart lift tickets, web cam systems, and smartphones.

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

Disaster Recovery

Using a Web search tool, identify cases in which private information was disclosed when

computer equipment was discarded. Recent examples have included smartphones (like Black-

Berry) that were sold without proper data cleansing and hard drives that were sold without

data cleansing after the computers they were originally used in were upgraded.

need around 600 words, in text citations and references.

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

13-discussion

 

Chapter 17 introduced some challenges to policy making in developing countries. If you were an analyst working for the St. Petersburg Informational and Analytical Center, explain how you would use data available to you to prepare a report for the Governor for the State Program “Combating Proliferation of Drugs.” Briefly explain what you would include in your report to detail the problem, and what the forecast results would be for each of several responses to the problem. (You do not have to use actual data from a real model for this discussion.) The idea is to focus on how models can use real data to create forecasts.

To complete this assignment, you must do the following:

A) Create a new thread. As indicated above, assume you are an analyst working for the St. Petersburg Informational and Analytical Center. Explain how you would use data available to you to prepare a report for the Governor for the State Program “Combating Proliferation of Drugs.” Briefly explain what you would include in your report to detail the problem, and what the forecast results would be for each of several responses to the problem. (You do not have to use actual data from a real model for this discussion.) The idea is to focus on how models can use real data to create forecasts.

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now