dis9_dsbda

 

There is still much confusion regarding what Blockchain is and what it is not.  Please discuss your explanation of Blockchain to include why it has been gaining so much popularity.

Ask an interesting, thoughtful question pertaining to the topic and  discuss about it in apa format with 2 references

Fall 2020 – Analyzing & Visualizing Data (ITS-530-M25) – Full Term

Quiz 6 Chapter 7

Applying all the code on your selected dataset, complete all codes from Chapter 7 Time-dependent graphs. Make sure you submit to this link two things

1. Your report file showing screenshots of all commands from Rstudio GUI

Make sure you show all Rstudio GUIs

2. Submit your R script code

Quiz 7 – Chapter 8

Applying all the code on your selected dataset, complete all codes from Chapter 8 Statistical Models. Make sure you submit to this link two things

1. Your report file showing screenshots of all commands from Rstudio GUI

Make sure you show all Rstudio GUIs

2. Submit your R script code

Quiz 8 Chapter 9

Applying all the code on your selected dataset, complete all codes from Chapter 9 Other Graphs. Make sure you submit to this link two things

1. Your report file showing screenshots of all commands from Rstudio GUI

Make sure you show all Rstudio GUIs

2. Submit your R script code

Data Set: https://www.kaggle.com/themlphdstudent/machine-learning-youtube-meta-data

wk3dis_531

 Why are the original/raw data not readily usable by analytics tasks? What are the main data preprocessing steps? List and explain their importance in analytics. 

Assignment

 Cloud policies are the rules or guidelines through which organizations operate. Often applied with the intention to make sure the integrity and privacy of company-owned data, cloud guidelines also can be used for monetary management, price optimization, performance control, and network safety. Cloud computing offers organizations some of benefits such as low charges, excessive performance, and the fast transport of offerings. However, without the implementation and enforcement of cloud guidelines, businesses can be uncovered to the risks of records loss, spiraling fees, and underperforming property. 

Virtual Memory Project in C

This project is pretty much complete, just need to implement a page replacement algorithm to the .c file I have included. The original pdf is attached as well. There is also an expected output after the code is complete to test the project.

Streaming Cipher

 

  • The HU corporation has asked you to research and provide information on one streaming cipher. Perform the research and provide information on the selected streaming cipher that you would recommend.
  • Identify the associated costs for the identified streaming cipher. Take into consideration the procurement costs i.e. software/licensing, implementation, configuring, and updating.

Heaps and prority queus In python

You have been provided a Python file, heap.py, which constructs a heap structure with a list. Using that code as a guide:

Develop a heap data structure using a linked structure (Nodes and Pointers)

The heap must support add and remove from the heap

All operations most abide by the rules that govern a heap (see lecture slides for reference)

Once you have your heap structure created, next you must use it as a backing structure to a priority queue.

Develop a priority queue data structure that is backed by a heap (linked structure NOT A LIST)

Implement the normal methods that accompany a priority queue structure

Enqueue, dequeue, and peek by priority not position

Also length and whether or not the structure is empty (is_empty)

Perform the following operations to showcase your working structure

Enqueue the following items: 4, 7, 5, 11, 8, 6, 9

Dequeue 3 items by priority, they should be 4, 5, & 6.

related heap.py file code is below

class Heap:

    def __init__(self):

        self.heap = [0]

        self.size = 0

    def float(self, k):

        while k // 2 > 0:

            if self.heap[k] < self.heap[k//2]:

                self.heap[k], self.heap[k//2] = self.heap[k//2], self.heap[k]

            k //= 2

    def insert(self, item):

        self.heap.append(item)

        self.size += 1

        self.float(self.size)

    def sink(self, k):

        while k * 2 <= self.size:

            mc = self.minchild(k)

            if self.heap[k] > self.heap[mc]:

                self.heap[k], self.heap[mc] = self.heap[mc], self.heap[k]

            k = mc

    def minchild(self, k):

        if k * 2 + 1 > self.size:

            return k * 2

        elif self.heap[k*2] < self.heap[k*2+1]:

            return k * 2

        else:

            return k * 2 + 1

    def pop(self):

        item = self.heap[1]

        self.heap[1] = self.heap[self.size]

        self.size -= 1

        self.heap.pop()

        self.sink(1)

        return item

h = Heap()

for i in (4, 8, 7, 2, 9, 10, 5, 1, 3, 6):

    h.insert(i)

print(h.heap)

for i in range(10):

    n = h.pop()

    print(n)

    print(h.heap)

Organ Leader and Decision Making

 This week’s journal article was focused on how information and communication innovation drives change in educational settings. The key focus of the article was how technology-based leadership has driven the digital age.  Also, that the role of technology leadership incorporates with the Technology Acceptance Model (TAM).In this paper, address the following key concepts:

  1. Define TAM and the components.
  2. Note how TAM is impacting educational settings.
  3. Give an overview of the case study presented and the findings.