Blockchain Technology

Question 1 : 

 While there are many benefits to the use of cryptocurrency, there is also much skepticism from the general public.  Much of this concern centers around legal protection associated with transactions. Search the Internet and outline what legal protections exist for Bitcoin users in the US and other countries.

  • Ask an interesting, thoughtful question pertaining to the topic
  • Answer a question (in detail) posted by another student or the instructor
  • Provide extensive additional information on the topic
  • Explain, define, or analyze the topic in detail
  • Share an applicable personal experience
  • Provide an outside source that applies to the topic, along with additional information about the topic or the source (please cite properly in APA)
  • Make an argument concerning the topic.

At least one scholarly source should be used in the initial discussion thread. Be sure to use information from your readings . Use proper citations and references in your post.

Question 2 : 

 We have viewed how Blockchain has made a significant impact on businesses and industries.  Select one industry and highlight the advancements Blockchain has had on that single industry.Your paper should meet these requirements:

  • Be approximately four to six pages in length, not including the required cover page and reference page.
  • Follow APA 7 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 and at least two 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.

This lab introduces you to

  

Language (or Software): C++
 

This lab introduces you to writing a C++ program to implement the concept of class inheritance using different types of bank accounts as a model. In this lab, you will create a base class, called CBankAccount, and two additional classes (each derived from CBankAccount), called CSavingsAccount and CCheckingAccount. You will then test the operations of each class in function main() to simulate the transactions of both a checking account and a savings account.

STEP 1: Create the Multifile Project and the Main (Base) Class
 

Create a new project that consists of the base class BankAccount.
 

The BankAccount class should contain, at minimum, the following members.
 

It should contain data members to store a bank customer’s balance and account number. These should be of different and appropriate data types.
It should have function members that do the following:
set the account number;
return the account number;
return the account balance;
deposit money into the account; and
withdraw money from the account.
STEP 2: Create the CheckingAccount Class Derived From the BankAccount Class
 

The class CheckingAccount should contain, at a minimum, the following members.
 

It should contain a data member to keep track of the number of withdrawal transactions made on the account. Whenever a withdrawal is made, this number should be incremented.
Override the base class, withdraw-money function, and add the capability to deduct transaction fees from an account using the following guidelines.
The checking account is allowed three free transactions. For each successful withdrawal transaction past the three free transactions, there will be a service fee of 50 cents per transaction. The service fee should be deducted from the account balance at the time the transaction is made.
If there are insufficient funds in the account balance to cover the withdrawal plus the service fee, the withdrawal should be denied.
The function should return a value to indicate whether the transaction succeeded or failed. Transaction fees should be deducted only from successful transactions, but the transaction count should be incremented in either case.
STEP 3: Create the SavingsingAccount Class Derived From the BankAccount Class
 

The class CheckingAccount should contain, at a minimum, the following members.
 

It should contain a data member to hold the daily interest rate. The daily interest rate can be calculated from a yearly interest rate by dividing the annual rate by 365.
It should contain a data member to keep track of the number of days since the last transaction or balance inquiry. This should be updated using a random-number generator (reference Lab 1) that will return a value representing the number of days between 0 and 7, inclusive. We will assume that this bank is open every day of the year.
It should contain a data member to hold the interest earned since the last transaction or balance inquiry.
It should contain a function member to set the annual interest rate.
Utilize the base-class functions for both withdrawal and deposit operations for the savings account.
Override the base-class-balance inquiry function to add calculating and adding interest to the account based on the daily interest rate, the current balance of the account, and the number of days since the last balance inquiry. This should be called only when a balance inquiry is made, not when a deposit or withdrawal transaction or an account number inquiry is made.
If there are insufficient funds in the account balance to cover a withdrawal, the withdrawal should be denied. The number of days since the last transaction or balance inquiry and the interest calculations should still be made.
A value should be returned to indicate whether a withdrawal transaction succeeded or failed.
It should contain a function member to return the interest earned since the last transaction or balance inquiry.
It should contain a function member to return the number of days since the last transaction or balance inquiry.
STEP 4: Test Program Operation
 

All data-input and data-display operations (cin and cout) should be done in the function main() test program.
The test program should create one checking account and one savings account with initial balances of $100 each using the functions defined in the class definitions. The test program should also assign a unique, five-digit account number to each account and assign an annual interest rate of 3% for the savings account.
The test program should then display a menu that allows the user to select which option is to be performed on which account, including the following.
Make a deposit and specify the amount to a selected or an entered account.
Make a withdrawal and specify the amount to a selected or an entered account.
Return the balance of a selected or an entered account.
For deposit transactions, withdrawal transactions, and balance inquiries, the updated balance and any fees charged or interest earned should also be displayed.
For the savings account, the number of days since last transaction should be displayed.
Exit the program.
Each account operation should display the account number and the account type.

CIT WA WEEK 5

Summarize the key points of the required reading “Social Media and Its Effects on Individuals and Social Systems” in a PowerPoint presentation with a minimum of 8 slides. Include information from at least two more sources that are more recent than the indicated paper.

Solve the optimization problem using Lagrange and Coordinate Descent

 

Qn = 633, D1 = 4,74, D2 = 4,42, Qp = 500, Qi = 500;

Qn = 812, D1 = 6,65, D2 = 6,80, Qp = 800, Qi = 700;

Qn = 1010, D1 = 8,06, D2 = 7,53, Qp = 900, Qi = 600;

Qn = 1250, D1 = 8,13, D2 = 7,74, Qp = 1100, Qi = 600;

Qs = 2400

I want the calculations done step by step and the demonstrations if necessary through graphs and tables

Assignment

 Learn About creating good password security.An IT Security consultant has made three primary recommendations regarding passwords:

  1. Prohibit guessable passwords
    • such as common names, real words, numbers only
    • require special characters and a mix of caps, lower case and numbers in passwords
  2. Reauthenticate before changing passwords
    • user must enter old pw before creating new one
  3. Make authenticators unforgeable 
    • do not allow email or user ID as password

Using WORD, write a brief paper of 200-300 words explaining each of these security recommendations.  Do you agree or disagree with these recommendations. Would you change, add or delete any of these?  Add additional criteria as you see necesarry. 

NoSQL

 

Build for MongoDB is for powering an online store or e-commerce solution.   MongoDB’s features can easily manage attributes in a product catalogue, track the interactions between the store’s inventory and customers’ shopping carts, and offer dynamically switching recommendations such as “Customers also bought” in a single shopping session.

1. Build a Database to accomodate the ecommerce

2. Build functions to insert and fetch data

3. Data should be in hierarchy fashion

4. Demo the full solution – when data is fectched by product identifies, name  – it should return hierarchial data

Activity to do

“Activity 5-8

Decipher an Internet error message. An email from a user says: “I  have  been  using Google to search for information on the web. I received a  message, ‘Error 403: Forbidden, ’when  I  attempted  to  access  a  website  that  interests  me.  What  does  this  message mean,  and  how  can  I  view  the  page? 

 What does this message mean, and how can I view the page?” (6-7 paragraphs – 4 sentences each). Submit assignment as Word document) Research net to find out.

create tidy dataframe

Using the attached spam dataset, create a tidy dataframe. Show your code and the results. Comment your code showing your understanding of what the code is doing line by line. 

Submit a Word or .pdf document with screenshots of your work in R Studio. Include a slice of your desktop with your screenshots.