C# Polling

 In this exercise, you’ll write a simple polling program that allows users to rate five social-consciousness issues from 1 (least important) to 10 (most important). Pick five causes that are important to you (for example, political issues, global environmental issues). Use a one-dimensional array topics (of type String) to store the five causes.  To summarize the survey responses, use a 5-row, 10-column two-dimensional array responses (of type Integer), each row corresponding to an element in the topics array. When the program runs, it should ask the user to rate each issue. Have your friends and family respond to the survey. Then have the program display a summary of the results, including:  

  1. A tabular report with the five topics down the left side and the 10 ratings across the top, listing in each column the number of ratings received for each topic. 
  2. To the right of each row, show the average of the ratings for that issue. 
  3. Which issue received the highest point total? Display both the issue and the point total. 
  4. Which issue received the lowest point total? Display both the issue and the point total.

Data

Stephanie: Gun control 8, immigration 10, health care 6, taxes 2, global warming 9 

Hassan: Gun control 7, immigration 6, health care 8, taxes 9, global warming 5

Ryan: Gun control 2, immigration 3, health care 8, taxes 9, global warming 1 

Lori: Gun control 3, immigration 2, health care 8, taxes 9, global warming 1 

David: Gun control 7, immigration 9, health care 8, taxes 6, global warming 10 

MKT455 week 10

 

You have heard of the 4P’s of Marketing? Price, Place, Promotion, and Product…

Did you know that there are also 7R’s called the 7R’s of Relationship Marketing?

Read the following brief article on the 7R’s of Relationship Marketing:

https://smallbusiness.chron.com/seven-rs-marketing-mix-64543.html (Links to an external site.)

Please answer the following questions:

  1. Briefly define each of the 7 R’s using any Internet references of your choosing;
  2. In your opinion, and supported by 1-2 Internet references, should marketers use the 4P’s of marketing in selling a product, the 7R’s of Relationship Marketing or both of them together (4P’s and 7R’s)?

Operations Manager

Operations Manager at H&N Company has detected losses due to coordination problems between the Accounting Department and the Purchasing Department, mostly caused by delays in payments to vendors which prevent the on-time arrival of materials. Purchase orders take too long to process. Propose an IT solution which would improve H&N’s control of purchases and payments.

Cloud Computing.

  

Discuss in 500 words or more federated architecture in cloud systems. Remember that this is a cloud class not a database class.  

Use at least three sources. Use the Research Databases available from the Danforth Library not Google. 

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 

CS502 COMPUTER SCIENCE FOUNDATION 2

 

Topic 9 Chapter 2 Poodll

Explain problem 82 from section 2.5 (on page 154). Explain each step as if you where teaching how to do the problem. 

Please submit an audio/video file of your work. 

Getting Started with iOS – The iPhone

The first iPhone was revealed at the Mac World conference in early January 2007, and later released in June of that year. Initially, third-party native applications were not allowed. Apple products have created a unique brand value within society.  Their products do not support third party applications, thus providing additional layers of security from social engineering and malware attacks.

  1. How has the use of core ideas such as location and orientation-aware pushed iPhone beyond its web browser and tightly integrated web functionalities?
  2. Why are Plists (property lists) the easiest way to store information on Macs?
  3. Discuss the benefits of using Xcode for developing iOS apps.

Need 70-80 words for each question with proper APA style citations.

computer architecture

  

Viruses and other malware often exploit bugs known as buffer overflows in widely used software. One method of preventing these exploits in software running on current Windows versions is Data Execution Prevention (DEP).  

investigate buffer overflows and DEP. 

  • How does DEP prevent malicious      attacks via buffer overflows? 
  • Is it always effective? 
  • Why might a user or      administrator disable DEP?

Discussion Response – Algorithms and Their Apps

Please respond with 150 words or more to the discussion below with your own opinion on algorithms, sorting, and the concepts that go along with it. 

 

After reading and doing my own research about arrays in programing, I  thought it made sense and I understood it. I was familiar with GUI as I  have worked with VM Ware before. I’m a visual learner, so after  watching hours and hours of Youtube videos I did not think it would be  hard to incorporate into my program. Module 3 was the module I struggled  with the most. Not with understanding, but more so with writing the  actual program. I had such a hard time figuring out the proper commands  to put in to make the program do what I wanted it to do. I will keep  watching videos and asking peers and colleagues I have in the I.T world  for help. 

We use sorting in the real world more than we know. In the  programming world, sorting is a set of instructions that take an array  or list as an input and arrange the items into a particular  order. Sortings are mostly done in numerical order or alphabetical  order. Sortings can be done in ascending (A-Z, 0-9) or descending (Z-A,  9-0) order. In the real world, we use sorting when doing things such as  online shopping. We can filter results by sorting based on ascending  prices (low to high) or descending prices (high to low). We can also  sort y color, material, size, etc depending on what you are shopping  for. Another example of when we use sorting is when we are looking at  music we have downloaded on our smartphones, songs and/or artists are  usually sorted out alphabetically in ascending order.