WK12

Prepare a 4 page paper on the future of digital currency litigation and the implications for taxation. What are the pros and cons? How will this ultimately impact the business world?

Your paper should be 4 pages long (excluding the title and reference pages) and formatted according to APA.

Compose your essay in APA format, including the introduction and conclusion, and in-text citations for all sources used. In addition to your 4 page essay, you must include an APA-style title page and reference page.

Assignment

 

Web Analytics: The Importance of Defining Goals and Funnels

Explore and understand why defining goals and funnels are important. Please, answer the following questions:

1. What is a Website goal, define how this will assist you in visitor engagement and why would you want negative goals?

2. Describe the five funnel shapes and give examples of what they mean.

3. Can you think of a 6th funnel shape and example? (i.e. some ideas might be thought of by better understanding the Amazon shopper or a “wishlist”)

 Please submit a Word Doc with your answers, in 500 words or more, and use references in support of your answers. 

Cyber Security

 VBA has played a special and notorious role in the cyber security world for several years.  Conduct research into VBA and its role in malware, and identify some techniques for using VBA in a secure manner.

  • Prepare a quality, substantive journal post that addresses the objectives of the assignment and the expectations set forth in the grading rubric. 
  • 300 words minimum is required. 
  • Use APA format
  • Use at least two credible sources.

Access Control Discussion

Evaluate a qualitative risk assessment framework versus a quantitative risk assessment framework with specific examples (e.g., FAIR, NIST, etc.).  APA formatting is expected for any references.  Initial posts due by Thursday end of day and two peer responses due by the end of the unit.  

portfolio

Length: Minimum of 600 words Create a portfolio related to work experience in IT. Submit a file that outlines any projects you have worked on as a student or professional that may influence a hiring manager or company to hire you.

Internet Programming

Internet programming 

 

This is an open book exam. However, each student is expected to work on it alone. Students whose solutions are the same or similar will get a grade of zero!!!

Exam time is 7:30pm to 10:50pm. Read instruction in “CPSC8720FinalExam.pdf”. Submit entire solution in zip file on blackboard before 10:50pm! Exam link will close and you wont be able to submit after that. Wrap up, zip, submit at least 5 minutes before 10:50pm! Submission passed due time will not be accepted! No Exception!

Research paper

 In this assignment you are going to read the following research paper: “A Turing Test for Computer Game Bots”. Then, please answer the following questions: 1. Summarize the following paper. Your summary should be 1 to 2 pages long and should cover the following parts: a. The problem and its importance. b. General description of the proposed solution. c. The experiments conducted. d. The results achieved. e. Did you find this article interesting? Please justify your answer. f. What is your critique on this paper? 2. Using the web, read then write about: a. The Turing Test: what is its purpose, and its importance. Then, give a detailed description of this test. b. The ELIZA chatbot, then briefly explain how ELIZA is related to the Turing Test. c. The Chinese Room argument, then briefly explain how it is related to the Turing Test. Please be careful about plagiarism, and that you do not copy somebody else’s text. There are no constraints on the format of the paper, just make sure that each question can be uniquely identified. The maximum page limit is 4. What to hand in Submit your assignment electronically through D2L. Please make sure that the file that you submit is a word document.

must be on c code

 

A Command-Line Interpreter, or Shell

Your shell should read the line from standard input (i.e., interactive mode) or a file (i.e., batch mode), parse the line with command and arguments, execute the command with arguments, and then prompt for more input (i.e., the shell prompt) when it has finished. This is what Minor 2 program should do with addition of batch processing which means just reading a batch line by line and calling the same interpretation logic.

  1. Batch Mode

In batch mode, your shell is started by specifying a batch file on its command line. The batch file contains the list of commands that should be executed. In batch mode, you should not display a prompt, but you should echo each line you read from the batch file back to the user before executing it. After a batch is finished the shell will exit.

  1. Interactive Mode

No parameters specified on command line when the shell is started. In this mode, you will display a prompt (any string of your choice) and the user of the shell will type in a command at the prompt.

You will need to use the fork() and exec() family of system calls. You may not use the system() system call as it simply invokes the system’s /bin/bash shell to do all of the work. You may assume that arguments are separated by whitespace. You do not have to deal with special characters such as ‘, “, , etc. You may assume that the command-line a user types is no longer than 512 bytes (including the ‘n’), but you should not assume that there is any restriction on the number of arguments to a given command.