WK- 5&6

Assignment 1

Excel is probably the most popular spreadsheet software for PCs. Why? What can we do with this package that makes it so attractive for modeling efforts?

Refer to Chapter 8 in the attached textbook:

Sharda, R., Delen, D., Turban, E. (2020). Analytics, Data Science, & Artificial Intelligence: Systems for Decision Support 11E. ISBN: 978-0-13-519201-6. 

Requirement: 

****Separate document for each assignment****

Minimum 300-350 words. Cover sheet, abstract, graphs, and references does not count.

Add references separately for each assignment question.

Strictly follow APA 7th Edition Format

No plagiarized content please! Attach a plagiarized report.

Check for spelling and grammar mistakes!

$5 max. Please bid if you agree.

Assignment 2

What are the common business problems addressed by Big Data analytics? In the era of Big Data, are we about to witness the end of data warehousing? Yes/No Why?

Refer to Chapter 9 in the attached textbook:

Sharda, R., Delen, D., Turban, E. (2020). Analytics, Data Science, & Artificial Intelligence: Systems for Decision Support 11E. ISBN: 978-0-13-519201-6. 

Requirement: 

****Separate document for each assignment****

Minimum 300-350 words. Cover sheet, abstract, graphs, and references does not count.

Add references separately for each assignment question.

Strictly follow APA 7th Edition Format

No plagiarized content please! Attach a plagiarized report.

Check for spelling and grammar mistakes!

$5 max. Please bid if you agree.

Assignment 3

There have been many books and opinion pieces written about the impact of AI on jobs and ideas for societal responses to address the issues. Two ideas were mentioned in the chapter – UBI and SIS. What are the pros and cons of these ideas? How would these be implemented?

Refer to Chapter 10 in the attached textbook:

Sharda, R., Delen, D., Turban, E. (2020). Analytics, Data Science, & Artificial Intelligence: Systems for Decision Support 11E. ISBN: 978-0-13-519201-6. 

Requirement: 

****Separate document for each assignment****

Minimum 300-350 words. Cover sheet, abstract, graphs, and references does not count.

Add references separately for each assignment question.

Strictly follow APA 7th Edition Format

No plagiarized content please! Attach a plagiarized report.

Check for spelling and grammar mistakes!

$5 max. Please bid if you agree.

Assignment 4

Explain how GDSS can increase some benefits of collaboration and decision making in groups and eliminate or reduce some losses.

Refer to Chapter 11 in the attached textbook:

Sharda, R., Delen, D., Turban, E. (2020). Analytics, Data Science, & Artificial Intelligence: Systems for Decision Support 11E. ISBN: 978-0-13-519201-6. 

Requirement: 

****Separate document for each assignment****

Minimum 300-350 words. Cover sheet, abstract, graphs, and references does not count.

Add references separately for each assignment question.

Strictly follow APA 7th Edition Format

No plagiarized content please! Attach a plagiarized report.

Check for spelling and grammar mistakes!

$5 max. Please bid if you agree.

Building web page

 Step 1:

create : Lollipop Chart to view the most common shapes of a sighting  https://www.d3-graph-gallery.com/lollipop.html 

Violin Chart to view the bins of duration for a sighting: https://www.d3-graph-gallery.com/violin.html 

Step 2: 

Word Cloud of submitted summaries for each sighting (D3) :  https://www.d3-graph-gallery.com/graph/wordcloud_size.html 

Step 3: 

Main web page with navbar (possible separate pages for charts as well)

Main page with a filter for selected dates or locations with a collective chart change

Main Chart on top of screen - Map of locations (Bubble)



(Secondary chart below or beside Bubble: Amchart pictorial )- optional



(This chart will show how many sightings per period selected)



Filtered charts per date or location:



Violin, Lollipop, Word Cloud 

Additionally, you are welcome to create any layout that you would like for your dashboard. An example dashboard is shown below: 

 Hint: 

  • Use console.log inside of your JavaScript code to see what your data looks like at each step.
  • Refer to the Plotly.js documentation when building the plots.

Research paper

1.

The Final Project has two parts: Limitations of Blockchain and Emerging Concepts.

Blockchain continues to be deployed into various businesses and industries. However, Blockchain is not without its problems.  Several challenges have already been associated with the use of this technology.  Identify at least 5 key challenges to Blockchain. Additionally, discuss potential solutions to these challenges. Lastly, please discuss if we will see the limitations to blockchain be reduced or mitigated in the future.  

There are several emerging concepts that are using Big Data and Blockchain Technology. Please search the internet and highlight 5 emerging concepts that are exploring the use of Blockchain and Big Data and how they are being used.

Conclude your paper with a detailed conclusion section which discusses both limitations and emerging concepts. 

The paper needs to be approximately 8 pages long, including both a title page and a references page (for a total of 8 pages). Be sure to use proper APA formatting and citations to avoid plagiarism.

Your paper should meet the following requirements:

• Be approximately 6 pages in length, not including the required cover page and reference page.

• Follow APA7 guidelines. Your paper should include an introduction, a body with fully developed content, and a conclusion.

• Support your answers with the readings from the course, the course textbook, and at least four scholarly journal articles to support your positions, claims, and observations, in addition to your textbook. 

• Be clearly and well-written, concise, and logical, using excellent grammar and style techniques. You are being graded in part on the quality of your writing.

2. the concept of Tokenization.  Three important protocols discussed were Secure Multi-Party Computation (SMPC), Policy-Backed Token (PBT) and Open Asset Protocol (OAP).  Compare and contrast these three protocols and explain which industries can benefit the most from each of these protocols. (250 words)

3.Enterprise Risk management Research (Annotated Bibilography- 500 words)

 Start work on your Literature Review in the form of an Annotated Bibliography.  Guidelines and requirements are in the video lecture and template provided.  Note that the template provided must be used for your submission.  Review the Annotated bibliography template provided in the attachment folder for proper format on presenting the literature review (annotated bibliography).  The assignment must be submitted in a MS-Word doc format too. 

Python cod

  

Write a Python program that reads IP addresses from an input file (ip_input.txt), checks its format and validity, and then checks its connectivity to each IP. Use the IP input file shown as below. Submit your code and the output screen shots after a run.

8.8.8.8

2.2.2.2.2

127.5.6.7

3.3.3.305

0.120.3.5

8.8.8.1

169.234.6.8

8.8.4.4

4.4.8.8

(you may add more to test your code)

Validity check (check the format and filter the addresses that are not publicly routable):

– IP should be four dotted format (x.x.x.x)

– octets having values between 0-255.

– IP should not belong to one of these blocks: 

o 0.0.0.0/8

o 127.0.0.0/8

o 169.254.0.0/8

o (you may add more if you like)

Connectivity check:

– Use ping for testing reachability to the IP address.

The output could look like:

Ip address: 8.8.8.8

Validity: yes

Reachability: yes

Ip address: 2.2.2.2.2

Validity: no – bad format

Reachability: no

Ip address: 127.5.6.7

Validity: no – in block 127.0.0.0/8

Reachability: no

…….

…….