Research paper review in detail

 

I need the following after reviewing the paper

Problem Statement – Issues discussed by the author

Approach & design – How the authors approach to the issue & what proposed ideas they mentioned

Strengths and Weakness – strengths & weakness of the proposed approach & design, and about the paper.  what are the key strengths of the authors proposed system and weakness of the system.

Evaluation(Performance) – How the authors evaluated the proposed system, what parameters they used to test the performance

Conclusion(In readers perspective)

Along with these, I need to have a detailed explanation of the paper section-wise:

sections are:

Abstract

Introduction

FUSE Semantics and API (in detail)

Applications 

Liveness Checking Topologies 

Implementation(in detail)

Experimental Evaluation(in detail

Summary

Conclusion of the authors for proposed system

discussion

 

For example, many think that the introduction of self-driving cars will disrupt the job market for drivers. 

Use at least three sources. Use the Research Databases available from the Danforth Library, not Google.   Include at least 3 quotes from your sources enclosing the copied words in quotation marks and cited in-line by reference to your reference list.  Example: “words you copied” (citation) These quotes should be one full sentence not altered or paraphrased. Cite your sources using APA format. Use the quotes in your paragraphs. Do Not Doublespace.

Easy own words, APA with citations

  • Read the Starbucks case study. This case study uses Porter’s Value Chain and Five Forces models and a SWOT (strengths-weaknesses-opportunities) analysis to develop strategic recommendations (review videos posted in week 1). 
  • On page 7 of the Starbucks case study there are 10 recommendations. Choose 3 of the recommendations and identify how IT could be used as part of the implementation of that recommendation.
  • Research in the library how other companies have done something similar for each of your 3 recommendations.
  • Your paper should be at least 3 pages, not counting the title and reference pages. The paper must include at least 3 references from peer-reviewed articles in academic journals or authoritative sources (include an author and publish date).
  • Make sure you have in-text citations and a reference page. You can include additional references from websites and books. 
  • Quotes should be used minimally and support the view you are presenting in the assignment.

https://scholar.harvard.edu/files/nithingeereddy/files/starbucks_case_analysis.pdf

Organizational Ethical Analysis

  

The organizational analysis will utilize a minimum of five external, peer-reviewed academic sources and contain the following sections:

Organizational Ethical Analysis

This is your introduction. Write 100-150 word introductions to ethical analysis here. 

What is the organization and how would you describe it?

Write 200-250 words minimum with 2-3 paragraphs. Describe your chosen organization, what type of product or service the organization offers. When it was formed and how the organization was started.  

Who are the leaders of the organization? Write 200-250 words minimum with 2-3 paragraphs. Describe leadership at your chosen organization. Address the leadership board or executives at the organization. Discuss the organizational structure and any information regarding change in leadership.  An organizational chart if available can be shown in this section. But you have to analysis the leadership and do not just list bulletins. 

Is the organization successful? Write 200-250 words minimum with 2-3 paragraphs. Describe and discuss if the organization is successful or not successful. Why makes this organization successful or not successful. Critical analysis and thinking from your own perceptive of the organization and its success or failure should be addressed in this section. 

How do you determine whether an organization is ethical or not? Write 200-250 words minimum with 2-3 paragraphs. From your own perspective and point of view discuss how to determine if the organization is ethical or not ethical. Discuss any unethical occurrences such as fraud and failure of leadership here. Use what you have learned so far in class to address how to determine if organization is ethical or not ethical. 

Based on your assessment and research, is the organization ethical? Write 200-250 words minimum with 2-3 paragraphs. Write your assessment if the chosen organization is ethical or not ethical? Use your research and analysis to answer this question. Why do you think that the actions outlined are considered as ethical or not ethical?  

What would you change about the organization to make it better, without sacrificing ethical standards?

Write 200-250 words minimum with 2-3 paragraphs. Address any organizational or leadership changes that you would recommend making the organization ethical or not ethical. Do you think that an ethics department or ethics manager might be needed to oversee ethics at the organization?  Address any and all changes that you think are needed to standardize ethics and enforce ethics at the organization.

Conclusion

Write 100-150 words minimum to summarize your paper and close this organizational ethical analysis.

Network Design Paper

  

Unit 5 Practical – Packet Filtering 

Please note that I’m assuming that pretty much ALL TCP communications will require acknowledgement, so I’m providing for this in the rules here, but on a per-port basis.

Individual programming assignments:Pinwheel

  

Individual programming assignments:Pinwheel Redux. Name the program pinwheel_redux.py

Download a version of this program without using functions at the end of this page 

You will write an improved version of the eight_parallelogram.py that you created for week 3. In this version, you will create the following two functions:parallelogram(s, parallelogramColor): This function draws a single parallelogram with longest side of length s and color parallelogramColor, as described in the Week 3 Assignment.pinwheel (s, nroParallelograms, parallelogramColor): This function uses a for-loop to call the function parallelogram() in order to draw the pinwheel. The parameter s represents the long diagonal of the parallelogram, nroParallelograms indicates the number of parallelograms in the pinwheel, and parallelogramColor is the fill color of the parallelograms. Your program should draw three pinwheels, in three different sizes, colors and at different locations on the window.
Create a function main() which asks the user for the sizes of the three pinwheels, the number of parallelograms in each pinwheel, and three color names.
Take a screenshot of the output of your program and submit with your program files.
Call the screenshot file pinwheel_redux.PNG 

Below are animations drawing a 3, 4, 8-parallelogram pinwheels:IP Address Descriptor Redux. Name the program ip_descriptor_redux.py.
Write a program that reads four integer values corresponding to an IP address “a1.a2.a3.a4” (IPv4), and determines whether the values form a valid IP address, the class of this IP address, and whether or not the values correspond to a reserved IP address space. Your program shall define and use the following functions:is_valid_ip(a1, a2, a3, a4): This function returns True if the address a1.a2.a3.a4 is valid; otherwise, the function returns False. The parameters a1, a2, a3 and a4 form a valid IP address if a1 is between 1 and 255, and the rest of the values are between 0 and 255, both included.determine_ip_class(a1): By providing the a1 component of an IP address, this function return one of the classes below depending on the range a1 falls in:
Class Range
—————–
“A” 1 – 127
“B” 128 – 191
“C” 192 – 223
“D” 224 – 239
“E” 240 – 255is_private_ip(a1, a2, a3, a4): This function returns True if the address a1.a2.a3.a4 falls in one of the address ranges below, considered Private IP Addresses; otherwise the function returns False.
Private IP Address
——————————-
10.0.0.0 – 10.255.255.255
127.0.0.0 – 127.255.255.255
172.16.0.0 – 172.31.255.255
192.88.99.0 – 192.88.99.255
192.168.0.0 – 192.168.255.255
——————————-main(): This function coordinates all the actions in the program: it asks the user for the components of an IP address, and determines whether it is valid or not. If it is valid, the program also shows the class of the IP address, and whether or not it is considered a private address.Here is a sample execution of the program when given a valid IP address (substitute me with your name):
IP Descriptor Program
by meEnter the four components of an IP address, separated by commas: 192,168,32,64
This is a valid IP address.
This is a class C address.
This is a Private address.Here is another example of a valid IP address that is not private.
IP Descriptor Program
by meEnter the four components of an IP address, separated by commas: 64,32,24,128
This is a valid IP address.
This is a class A address.
This is a Public address.This is an example of an invalid IP address:IP Descriptor Program
by meEnter the four components of an IP address, separated by commas: 64,32,-24,528
This is NOT a valid IP address

Design and implement a stringed musical

  

1. Design and implement a stringed musical instrument class using the following guidelines:

a. Data fields for your instrument should include number of strings, an array of string names representing string names (e.g. E,A,D,G), and boolean fields to determine if the instrument is tuned, and if the instrument is currently playing. You are welcome to add additional data fields if you like.

b. A constructor method that set the tuned and currently playing fields to false.

c. Other methods 1) to tune the instrument, 2) to start the instrument playing, and 3) to stop the instrument from playing.

d. Other methods as you see fit (Add at least one unique method).

2. Create a UML class diagram using a diagram tool (e.g. PPT, Visio) of your choice. Prepare the diagrams and place them in a word document along with a brief description of each of your classes.

3. Create Java classes for your instruments. Be sure that your code matches your design specifications and some minimal functionality is included. For example, if you called the violin.play() method, you should at least print that the violin is playing. Similar functionality should be supplied when you stop playing, tune or call any of your methods. For example:

public void playviolin() {
System.out.println(“The violin is now playing.”);
}

4. Write the output from your Instrument class methods to a text file that a user entered from the command line arguments (e.g. java Mynamep3tst myfilename.txt). This allows your program to accept filenames from the user via a command line argument.

5. Finally, create a Java test class that simulates using your instrument class. In your test class be you should at a minimum: a) Construct 10 instances of your instrument, b) tune your instruments, c) Start playing your instrument, d) Call your unique method, and e) Stop playing your instruments. (Hint: Arrays and Loops will make your job easier and result in more efficient code!)

6. Your programs should compile and run without errors.

7. Be sure to test your program carefully. Provide a list of comprehensive test cases used to validate your application and include these test cases in your word document containing your UML diagrams and descriptions. Similar to Project 1, your test data can be shown in a table that includes input data, expected output, actual output and pass/fail results from the test.

Discussion Board

Accomplish #2: Defining a ‘Strategy’

After reading the lecture post about Redding and Steele’s strategies and the accompanying list, choose one of Redding and Steele’s eighteen strategies that you believe is prevailing in our current popular culture. 
First, rewrite and define the chosen strategy in your own words. 
Then, identify at least two examples of modern television programs, movies, or albums that display your chosen strategy. 
Finally, using specific, detailed examples, explain how the television programs, movies, or albums you identified can successfully demonstrate your chosen strategy. 
For example, you could define the strategy of Achievement and Success as “The belief that no matter how difficult a goal may seem, it can be achieved through determination, optimism, hard work, and your best efforts.” 
Then, for example, you might go on to describe how this strategy or value of Achievement and Success is seen in our popular culture through the struggles of contestants to lose a significant amount of weight on the NBC reality show “The Biggest Loser,” through the determination of the aging boxer to get back in the ring and face a young champion in 2006’s “Rocky Balboa,” or through Elle Wood’s efforts to prove she is serious enough to get a law degree from Harvard Law School in 2001’s “Legally Blonde.” Remember to use specific examples in your explanations.