Research Paper

Create a Research Paper.

In the document attached, you have notes about a theme with the following information:

1.   Title

2.   Body of the Research Paper

3.   Footnote

4.   Reference

Using the concepts and techniques learned, organize the notes as necessary, and then create and format the research paper according to the MLA documentation style.

Be sure to check the spelling and grammar of the finished paper. 

·        Add the header and page Number

·        Add the footnote at the end of the first paragraph

·        Add the Reference at the end of the body

·        Create the Works Cited according to the MLA Style format as studied.

CREATE TABLES AND QUERIES IN MS ACCESS

 

Overview

For this assignment, you will use MS Access to create tables and queries.

Instructions

Using an ERD to create tables in MS Access
  • Refer to the ERD that you created in the Week 8 assignment. Create an ERD, and perform the following steps in MS Access: 
    • Create the tables and relationships from the database design created in the Week 8 assignment. 
    • Add at least five records into each table (Note: You must determine the field values).

Include the following screenshots in a Microsoft Word document to show the completion of the steps above: 

  • Screenshot depicting the tables created within MS Access.
  • Screenshots depicting the records added into each table. Include one student where the student’s last name is your name. 
Query tables in MS Access

Perform the following steps in MS Access:

  • Create a query with all fields from the student table, where the student’s last name is your name. 
  • Create a query that includes students’ first names, last names, and phone numbers. 
  • Create a query that includes instructors’ first names, last names, and courses they teach.

Include the following screenshots in a Microsoft Word document to show the completion of the steps above: 

  • Screenshot depicting the tables created. 
  • Screenshots depicting the records added into each table. 
  • Screenshots depicting the query results from each of the queries created. 

This course requires the use of Strayer Writing Standards. For assistance and information, please refer to the Strayer Writing Standards link in the left-hand menu of your course. Check with your professor for any additional instructions.

The specific course learning outcome associated with this assignment is: 

  • Use MS Access to create tables and queries.

Assignment

You will develop a word document to include:

  1. Your research question in the form of a quantitative question – 

This was my research question ( security of the personal information of health care system users – how to protect cyber threats to important personal health care information using AI.

2. Use any one of the instruments given in the sample attached document i.e, either a regular survey questionnaire or closed-ended survey or archival data that could be used to answer the quantitative version of your research question. 

Special note: for those using archival data, you will describe the process of data retrieval for your archival data. See examples to help. 

3. A one-paragraph description/justification of how your chosen instrument/protocol is the best choice for answering the quantitative version of your research question.

See rubric for how the paper will be graded.

To write java program of prime numbers

you will generate a NON THREADED, SEQUENTIAL program.  This sequential program will take some input (you can grab this input from the user, or from a command line argument) that it will store in an integer.  (Therefore, there needs to be checks in place to make sure that the number being given can be stored adequately in an integer.  You do not need to use BigInteger or long for this, regular integersis fine.  This is more about design than about function).

Now that you have this number, you want to compute all the prime numbers that exist between 2 and that number (inclusive).

If a number is not prime, you will store that number and a List of its factors in a Map

If a number is prime you will store it in a List.  So, at the conclusion, we have a Map of non primes that contain factors of numbers and a list of primes.

You will time the runtime of your application so that we know how long it will take to build these two structures.  To time your application, simply generate a starting time as soon as you retrieve the number you want to use as the base of your iteration and then stop the timer when you are finished generating your structures.  Report back what the difference is. You can use System.currentTimeMillis(); to do this.