Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

A new video store in your neighborhood is about to open. However, it does not have a program to keep track of its videos and

A new video store in your neighborhood is about to open. However, it does not have a program to keep track of its videos and customers. The store managers want someone to write a program using linked list structure for their system so that the video store can function. The program should be able to perform the following operations:

  1. Rent a video; that is, check out a video.
  2. Return, or check in a video.
  3. Create a list of videos owned by the store.
  4. Show the details of a particular video.
  5. Print a list of all the videos in the stores.
  6. Check whether a particular video is in the store.
  7. Maintain a customer database.
  8. Print a list of all the videos rented by each customer.

There are two major components required which are videos and customers and three lists are needed as follows:

  1. A list of all the videos in the store.
  2. A list of all the stores customers
  3. A list of the videos currently rented.

QUESTION:

Write a JAVA program using linked list structure for the video store as the following:

  1. Design, implement and test the video component. (Part 1)
  2. Design and implement the customer component, which is then added to the video component developed in Part 1. (Part 2)
  3. Perform all the operations listed previously after completing Part 1 and Part 2.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Processing Fundamentals Design And Implementation

Authors: David M. Kroenke

5th Edition

B000CSIH5A, 978-0023668814

More Books

Students also viewed these Databases questions