Management Information Systems /The Benefits of Using Cloud Computing

  

Instructions for Term Paper

Term Project 

· Each student should choose a topic for his/her term project. There is a list of suggested topics that can be used, or students can choose different but similar topics

· Students are given time to conduct a preliminary research and find published material related to the topic of their choice

· Each student needs to submit the first page of every publication that he/she finds including “Abstract” and information related to where and when each article/paper was published 

· Once the project topic and research material are reviewed and approved by the instructor, students can proceed to conduct further research and complete their respective project

Deliverable:

Complete paper should be submitted as typed papers, not to exceed ten pages (standard 12 pts and double space) and must include title, name and references). 

Important:

When choosing articles/papers related to the chosen topics, students must pay attention to selecting articles that include new information for them. Each term paper will be evaluated based on originality and individual increased learnings directly related to the project. 

Elements of programing

 

Use examples from the readings, or from your own research to support your views as appropriate. Be sure to read the follow-up posts to your own posts and reply to any questions or requests for clarification. By the way, include the name of the person’s post you are replying to. Thanks! 

Discussion Points:

What are the elements of a programming language (3 elements)

  • Explain the use of each element.
  • Provide an example/sample code of each.

DB Management Systems

 

  • Topics
    1. Suppose you never learn database and have no idea about database, as you need to manage your data, what will you do? 
    2. Why shall we use Database Systems? Is it a must or a good way/idea to manage/handle data?
  • DifferenceData WarehouseData LakeData StructureProcessedRawPurpose of DataCurrently In UseNot Yet Determined; more diversityUsersBusiness ProfessionalsData ScientistsAccessibilityHighly accessible and quick to updateMore complicated and costly to make changesFrom definition, both of Data warehouses & Data lakes are widely used for big data application and belong to high-level purpose of storing data. A data warehouse is close to as a repository to store those structured, filtered, or processed data for specific purposes. A data lake can be a very large pool/lake that stores raw data (but data has been collected through a lot of different sources and maybe not exactly raw data feed/input into the system), the purpose is then more close to not defined. 

Excel 2016

Can anyone do Excel 2016 Module 7 and Module 8. There are instructions and Datafiles for both modules. And I need this done by 05/10/2021

JavaJam Project Part 3

 JavaJam chapter 13 (Pg 568) – task 3

  • details located in the attachment labeled “JavaJam directions”
  • all attachments listed for project up to this point

Systems Architecture

 

Research cloud-based storage service and Software as a Service (SaaS) backup systems.

Complete a 2-3-page paper with an abstract and conclusion (plus cover sheet and reference page) that discusses:

1.     How does a cloud based storage service differ from Software as a Service (SaaS)?

2.     Give a brief overview of the following types of cloud based storage (Public, Private, Hybrid and Mobile).

3.     What are the disadvantages and advantages to using cloud based storage?

4.     What are the availability, performance, and security considerations?

Specific questions or items to address:

1.     How does a cloud based storage service differ from Software as a Service (SaaS)?

2.     Give a brief overview of the following types of cloud based storage (Public, Private, Hybrid and Mobile).

3.     What are the disadvantages and advantages to using cloud based storage?

4.     What are the availability, performance, and security considerations?

HW

 

nstruction

Hi this writing is a reflection research writing paper on the topic we chose about development which mine is “Decent Work and Economic Growth ” the reflection paper of this topic has to connect the topic “Decent work and Economic Growth” with development by it self and also how it relate with women’s part in development which are topics we have covered in class. You can use any of or different parts of the continents or countries to compare and explain different things that you want to say about development based on the topic Decent Work and Economic Growth which is also among one of the 17 sustainable goals by the United Nations. The paper is double spaced 10 pages and use your own sources that are credible( make sure to use good sources), the sources can range from 5-7 as you wish.

Note:- The rubric is below but I’ll attach the file for the rubric if needed. The topic I chose as I mentioned above is “Decent Work and Economic Growth “.

This is the comment from the instructor after he approved my topic:- “ Great topic. Be sure to clearly define what “decent work” is.” Interested to see what you find.”

Rubric

The final project is designed to dig deeper into a development topic of your choice while relating it to the material we have discussed in class. Students will be asked to write a 10 page (double-spaced, 12 point font) paper covering three sections as outlined below. The paper should include citations from outside reputable resources and be listed in a bibliography at the end of the paper. All papers must be submitted to Canvas by 11:59 PM M.S.T. on August 5th. No late papers will be accepted.

Section

Description

Points Possible

Issue

Mapping

Describe the historical and social context of your issue. Provide background information that is relevant in understanding the current state of the issue. Should you choose to be interested in examining a specific geographic region, provide information specific to this area. Who is affected by it? What is the size and scope? How does this issue affect other social spheres. (3 page minimum)

12

Solution Mapping

Who is working to solve the problem? What development approaches are they implementing? What has worked/ has not worked? What networks and resources exist that could further address the issue? What role does the private, public, and social sector have in providing solutions to the issue. What other possible solutions do you think would be most effective? (3 page minimum)

12

Reflection

Based on the course content, what development paradigms or approaches are related to your issue? Cite specific course material (readings, lecture, etc.). Have your perspectives on development changed over the course of this class? What have you learned about development from researching this issue? How might this class further inform your future academic/professional career? (3 page minimum)

12

Formatting

Meets the following requirements: 9-10 page limit, double-spaced, 12-point font, includes outside and course material with proper in-text citations, bibliography, minimal grammar mistakes

Write a method that computes future investment value at a given interest rate for a specified number of years. The future investment is determined using the formula in Programming Exercise 2.21. Use the following method header: public static double fu

 

 

6.7 (Financial application: compute the future  investment value) Write a method that computes future investment value  at a given interest rate for a specified number of years. The future  investment is determined using the formula in Programming Exercise 2.21.  Use the following method header: public static double  futureInvestmentValue(double investmentAmount, double  monthlyInterestRate, int years) For example,  futureInvestmentValue(10000, 0.05/12, 5) returns 12833.59. Write a  program that prompts the user to enter the investment amount (e.g.,  1000) and the interest rate (e.g., 9%) and prints a table that displays  future value for the years from 1 to 30, as shown below. First, truncate  the future value values to two decimals (See Chapter 2). Then use the  System.out.printf() method to format the output (See Chapter 4). 
 

Program name:

  Lab06.java
 

Sample Runs:

The amount invested: 1000

Annual interest rate: 5

Years      Future Value 

1              1051.16 

2             1104.94 

3             1161.47 

4             1220.89 

5             1283.35 

6             1349.01 

7             1418.03 

8             1490.58 

9             1566.84 

10            1647.00 

11            1731.27 

12            1819.84 

13            1912.95 

14            2010.82 

15            2113.70 

16            2221.84 

17            2335.51 

18            2455.00 

19            2580.61 

20            2712.64 

21            2851.42 

22            2997.30 

23            3150.65 

24            3311.84 

25            3481.29 

26            3659.39 

27            3846.62 

28            4043.42 

29            4250.29 

30            4467.74