Information Systems homework help

Write research paper “How will artificial intelligence affect politics?” using evidence. (Annotated bibliography)
Resources
NY Times Science Section
Google Scholar
Online technology publications
TED Talks
YouTube Videos

Information Systems homework help

With the proposed addition of the new enterprise systems in place, the executive team wants to increase revenue by implementing e-commerce opportunities for the business. They have asked for a proposal to integrate e-commerce into International Plastics’ business strategy. As a guideline, this type of proposal is typically 3 to 4 pages in length.
Write a proposal with:

  • A list of anticipated functional requirements for e-commerce (the operations that e-commerce must be able to perform)
  • Three options integrating e-commerce into International Plastics’ business strategy
  • A recommendation of the best option based on the list of anticipated functional requirements

Note: Review the Lynda.com® course “Writing a Proposal” with Judy Steiner-Williams for tips on writing a proposal.

Information Systems homework help

Common Hacking Techniques You Should Know About
Hacking is the process of gaining unauthorized access into a computer system, or group of computer systems. This is done through cracking of passwords and codes which gives access to the systems.
Discussion/Research Questions

  1. What are the best ways to guard against hacking attacks?
  2. List one of the biggest (known) hacks of all time and provide a few details related to this incident

Information Systems homework help

HI150-5: Examine future technologies important to the management of health information.
Discussion:  Final Discussion and Preparation for Final Quiz
In this final discussion board, share your experiences with the course and identify the activity, or activities, that you found the most beneficial in learning more about computers and health information technology.
End your discussion by indicating the areas in which you feel you need more information, or assistance in, such as additional training, exposure, or practice.
Participation Expectations: Please engage on this topic throughout the unit by posting one main response by Saturday and two reply posts by the end of the unit. Your main post to the discussion should contain about 100-150 words, with no more than 10% quoting, and all sources cited with a reference list in APA style. Each reply post should contain about 50–75 words—use of APA style as needed.
This is a graded Discussion. To review the grading rubric, go to Course Resources/Grading Rubrics.

Information Systems homework help

You are almost at the end of your critical thinking journey—but only for this class! Hopefully, this begins a lifelong journey of searching for knowledge, improving yourself, and seeking the truth! We started the course reflecting on what critical thinking is and how we formulate our opinions and beliefs. We then expanded the concept of critical thinking to include consideration of how we relate to friends, family, and other personal situations. This week, we look at a broader scope of areas where critical thinking is vital.
After completing the Learning Activities for the week, please respond to all the questions below. Your response should be a minimum of 175 words total (approx. 50 words per question).

  • Where do you get most of your news, and how do you analyze what you hear, view, or read on media outlets?
  • In what ways can/do you, as a citizen, get involved in the governmental process? How do you apply critical thinking when you are involved in these activities?
  • Share an example of a fallacy or rhetoric you have seen used to market a product or service in commercials, advertisements, etc. How will you use information provided in Ch. 10 of THiNK: Critical Thinking and Logic Skills for Everyday Life to be a more mindful consumer?
  • If someone asked you what your favorite activity or concept from this class was as well as what the most challenging activity or concept was, what would you tell them and why?

Information Systems homework help

Assignment Content

  1. Over the past 5 weeks, you have learned about different elements related to critical thinking. You related the concepts to your personal experiences and evaluated your critical thinking skills. You have identified fallacies, evaluated arguments, and learned the role of these concepts in your daily life. Now it’s time to apply the concepts. In this assignment, you will review a real-world scenario and apply the critical thinking skills you have developed.
    Review the Real-World Critical Thinking Scenario.
    Write a 350- to 700-word reflection on the scenario, using the Reflection Template. Follow the instructions within the template to complete your reflection. You will need to include an introduction paragraph to introduce your reader to the topics you will be discussing; 3 body paragraphs, each with specific questions that need to be addressed within; and a conclusion paragraph to bring your paper to a close.
    Note: The Reflection Template is already formatted appropriately, and you do not need to make any changes to the format. The questions to help you write the 3 paragraphs are contained in the template. Be sure to demonstrate your critical thinking abilities in your responses to the questions and ensure your paper flows well from topic to topic.
    Submit your assignment.
    Resources 

Information Systems homework help

Assignment Content

  1. Conduct an internet search using the phrase “small office local area network” for network diagram examples to help you complete this assignment.
    As you continue to work on Great Day Fitness Tracking’s website, you now need to gather business requirements and user requirements to identify the hardware, software, and network requirements to support the online business.
    Write a 2- to 3-page proposal in Microsoft® Word. Your proposal should:

    • Describe how you would select appropriate hardware and software to develop the internal business infrastructure.
    • Explain at least two possible approaches to managing the data for easy access and security.
    • Describe possible networks that might be used to support business needs.
    • Create a logical system diagram with a software of your choice showing possible internal connections as well as those between the site and the potential customers.
    • Format your assignment according to APA guidelines.

Information Systems homework help

The background for your assignment is that you are on the security team at your organization. You need to inform the development team at your organization of the OWASP Top 10 and explain why these security risks need to be accounted for in the web application development process.
You will pick three different OWASP Top 10 security risks (e.g. Injection, Broken Access Control, etc.) and create presentation materials for each of the three for various stakeholders in the development process. Each presentation covers only one of the security risks. Stakeholders include developers, testers, technical managers, and non-technical managers. Your goal is to help these development process stakeholders understand how these risks affect web security, how they should prevent them, and what best practices they should employ to minimize all risks. Your presentation materials should include an example of an incident involving the security risk that made national news. It is appropriate to include supporting material from the Common Weakness Enumeration (CWE) site.
Along with your presentation submission you will need to fill in the details of your organization in terms of what kind of industry it is in and what sort of product or service it provides, i.e. small family-owned grocery store with online shopping for delivery or pickup functionality.

Information Systems homework help

The task is to design and develop a prototype for one of the features of an application which tracks the performance of the players.
The Application features a game with a number of levels; on successful completion of a level, a player moves to the next level. Players can register directly with the app itself or by supplying identification information from one of a number of linked social media apps.
Player data is stored in a single file either as delimited text format or object file. Player details are    Id, Player Name, Image Filename, Current Level, Number of Attempts at Current Level, and, Total Points earned. For social media players the social media app name and identifier are stored.
Requirements
Develop a project with console menu-driven application. The project should contain a controller class with stubs for methods implementing the requirements listed below:
1. Load player performance information from a specified file into a players collection implemented using a repository
2. Add a new player with default values for current level, attempts and points and remove a player from the list.
3. List all players in ascending order of overall points earned
4. Update a player’s performance data after an attempt at a level – overall points earned should be updated. On successful completion of a level the player should move to the next level and attempts returned to 0; otherwise, number of attempts should be incremented
5. Persist the collection to a specified file
The project should contain a model, repository and controller classes. A sample delimited text file is additionally supplied.
Development Approach
An incremental development approach should be used with the following increments:

  1. Load players from      a file and list in name order

This fulfils Requirement 1. To complete this increment you should:
a. Complete the Player and SocialMediaPlayer classes with required fields and methods
b. Decide on which type of collection you want the repository to define and make the necessary adjustments to the Repository class and RepositoryInterface.
c. Partially complete the GameController class by completing the constructor method which creates a new Repository object from a file if specified by the user
d. Partially complete the GameController class to implement the listPlayers() method
e. Create a DAOImpl class to realize the DAOInterface using either text file or object file format
f. Modify the Repository class to use the DAOImpl class to load players from a specified file
Document the results of your testing using screen snippets copied into a Word document. Take a copy of the GameController class and name it as GameController_Increment1.java.

  1. Add new Player

This fulfils Requirement 2. To complete this increment you should:
a. Fully implement the addPlayer() method in the GameController class; this should ask the user for required details, create a new Player or SocialMediaPlayer object and add it to the Repository object.
Document the results of your testing using screen snippets copied into a Word document. Take a copy of the GameController class and name it as GameController_Increment2.java.
3. Remove a player from the list
This fulfils Requirement 2. To complete this increment you should:
Enter the player id and remove player details from the list based on the entered id.

  1. List players in ascending      order of points earned

This fulfils Requirement 3. To complete this increment you should:
a. Complete the listPlayersInPointsOrder() method in the GameController class.
b. Ensure the Player class defines a method to compare players on the totalPointsEarned attribute.
Document the results of your testing using screen snippets copied into a Word document. Take a copy of the GameController class and name it as GameController_Increment3.java.

  1. Update Player      Performance Data

This fulfils Requirement 4. To complete this increment you should:
a. Complete the updatePlayer() method in the GameController class. The number of points earned in this attempt should be entered and whether or not the level has been completed.
Document the results of your testing using screen snippets copied into a Word document. Take a copy of the GameController class and name it as GameController_Increment4.java.

  1. Persist player      collection to a file

This fulfils Requirement 5. To complete this increment you should:
a. Implement the store() method of the DAOImpl class if you have not already done so.
b. Implement any necessary toString(DELIMITER) methods.
Document the results of your testing using screen snippets copied into a Word document.

Marking Scheme

 
Marks
 
Player class
10
 
SocialMediaPlayer   class
10
 
Repository class
5
 
DAOImpl class
5
 
Increment1   GameController class
10
 
Increment2   GameController class
10
 
Increment3   GameController class
5
 
Increment4   GameController class
5
 
Increment5   GameController class
5
 
Use of nested   classes (inner/local/anonymous)
10
 
Use of abstract   & generic classes
5
 
UML Class diagram
10
 
Use of lambda   expressions
10
 
Total
100

Starter Project Test Run

run:
Game App
========
Players
=======
A. Add Player B. Remove Player C. List Players D. Update Player Q. Quit
Enter choice:
A
Add Player
==========
Players
=======
A. Add Player B. Remove Player C. List Players D. Update Player Q. Quit
Enter choice:
B
Remove Player
==========
Players
=======
A. Add Player B. Remove Player C. List Players D. Update Player Q. Quit
Enter choice:
C
Players
=======
A. Add Player B. Remove Player C. List Players D. Update Player Q. Quit
Enter choice:
D
Update Player
=============
Players
=======
A. Add Player B. Remove Player C. List Players D. Update Player Q. Quit
Enter choice:
Q
Thank you for using Game App. Good bye.

Sample Delimited Text File

1,”Saleh”,”salehpic.jpg”,20,2,1500
2,”Salim”,”salpic.jpg”,1,0,0,”MyBook”,”salim123@sal.com”
3,”Ibrahim”,”ibr.jpg”,15,1,100