The Database System Life Cycle

  The Database System Life Cycle, otherwise known as the System Development Life Cycle (SDLC), consists of five important steps:

1. Investigation.

2. System Design.

3. Development.

4. Execution.

5. Maintenance.

Research the Database System Life Cycle. Find at least two references to it. Note that the names and wording in the steps of the life cycle may superficially vary between different sources. Focus on understanding the concepts presented, rather than the language.

· Summarize each step and describe how they work together.

· Explain how you have used, or can use, the cycle in another context. For example, how can these steps be used when buying a car or planning a trip?

· Use a table to show parallels between developing a database and performing the task you chose.

WEEK-3

 Explain Project Management and identify the primary reasons projects fail. 

Collaboration with Assignment MS Tools, Images,

  • Taking screenshots
    • Windows 10: Snipping Tool or Snip & Sketch
    • MacOS: Grab tool
  • Microsoft Word

This week you will finalize the draft of your proposal. You are expected to use a copy of your Week 3 file before you start finalizing the research proposal. Below are the areas and features you are expected to include as part of your document:

First Document

  1. The duplicated document should include at least one table that includes data with 3pt only for the border and a shadow. For example, you could provide a list of options with costs, or some high-level statistics about the topic you have chosen.
  2. Insert at least 2 images and apply a square type of wrap to them.
  3. Make sure your previous research and citations are added by using the citation and research tools covered during this week.
  4. Add a comment, using the comment feature, to the table section and explain why this table is important for your document. Enable track changes so you can review any changes made by the committee.

Second Document

  1. Create a short letter to the committee explaining the benefits of this research. Download the attached file of(Links to an external site.) (Links to an external site.) to use for your mail merge. The following fields should be used as part of the letter. Save all the letters generated as a PDF document.
  • Name
  • Address
  • Email

Third Document

  1. One of the members of the committee does not speak English. Using the translation tools you have learned about, provide a document with a screenshot and instruction that shows how to translate a document.

Once you have completed all these tasks, you should have three different documents, that should be named as follows:

  • The finalized research document in Word. Name file as “YourName_COMP150_W4_Assignment”
  • The PDF document with all mail merge recipients. Name file as “YourName_COMP150_W4_Assignment_MailMerge”
  • The document with screenshots showing how to translate it. Name file as “YourName_COMP150_W4_Assignment_translation”

InfoSec Legislation

 

Research any of the acts provided in Table 2-1 of the textbook. Provide in your paper a full description of the act, relevant dates and cite any legal case ever charged or tried under this act.

Prepare a 350- to 1,050-word paper that fully discusses the topic questions

Homework for Web Data

   

Homework for Web Data  
Assignment:
There are two major parts to this assignment. For the server code (service and java business logic) you will need to create a utility object that maps to the JSON you will be ingesting. This includes number in party, hike, start date and hike duration in days. It is probably easiest to map the fields as Strings and primitives and then use them to build your components (BookingDay, Rates) in your Java logic. You will also need
another utility object to package the result and or error message that gets passed back to the client. Once you have your utility objects you will need to incorporate them in your service method from last assignment as either an input parameter or return object. Don’t forget to update the annotations for your modifications.
The second part of the assignment will be providing a client page to collect the parameters from the user, call back to your service, and then provide the result back to the user ON THE SAME PAGE. This actually involves things that we have not covered to this point in the class. However, I am providing the following Reference HTML Page for you to use as a template for your client page. The page contains an empty HTML form for you to fill with your input elements and an empty result area that is updated with the data returned by the service and formatted for the users readability. It also includes JavaScript that takes the form data (after user submits with button push) and converts it into a JSON string, makes an AJAX POST call back to your service and then processes the result. The only thing you really need to do to the JavaScript section is update the success function to read, parse and update the page with the JSON results returned from the service. The rest of the JavaScript should function as it is. The reference page contains direction in the form of comments that you should find helpful as you make updates. Once completed, you should be able to bring up the client page with the form, update the parameters and upon clicking the Get Rate button see the results appear below the form in the output area. As with the last assignment, you are *strongly* encouraged to use Netbeans to build this application with Tomcat. I’d like you to make a ReSTful Java Application that will include your client page and that you will setup and configure as a web application to be deployed to the class web server as a war file. Also, don’t
forget to make sure you have an appropriately configured service using either the ApplicationConfig.xml, web.xml in your war file so that it is recognized on the class server. You should be able to use most of the logic from your last assignment, but you will need to add the new utility objects along with logic to get the information from the objects to your existing code and from your code back to the utility object for return to client. You will also need to update the service signature and annotations to make sure it ingests and returns JSON formatted data.
Your final project source should include all your back end code, service, utility objects and any other business logic, client side page that will be used to call into the service and any configuration files (e.g., web.xml) that are used in your implementation.
Submission:
A zip file of the following should be posted to the Blackboard assignment:
1. Screen shots of your client working with your server (show one bad data and one good data result).
2. All of the source code for the project (client, service and configuration).
Also upload your war file to the class server and provide the URL of your form page that accesses your web service in your blackboard submission.