Task: You should implement a program for managing motorcycles in C ++. Motorcycle rental You are responsible for managing motorcycles. Since all processes are currently recorded in paper form, you should create a program for motorcycle management. The employee should be able to manage customers and make reservations for motorcycles. The customer can only reserve one motorcycle at a time. There are a total of 4 motorcycles to choose from: “Suzuki Bandit”, “Honda TransAlp”, “BMW F 650 GS” and “Kawasaki ZZR1400”. Make sure that a motorcycle is not reserved twice. When making a reservation, the customer must state: surname, first name, address (street, number, post code, city), year of birth, telephone number and whether he has a class A driver's license. If he does not have a class A driving license, no motorcycle can be reserved for him. As soon as the motorcycle has been handed over, the reservation for this customer will be canceled. The data record is removed from the linked list. Every time a motorcycle is booked or canceled, the file should be written. The program should meet at least the following requirements: Management of customers: Collect data. The acquisition of the data should take place via istream (>>) operator overload. Output all customer data. The output should take place via ostream (<<) operator overload. Management of reservations: Make a reservation Hand over motorcycle (with the query of the customer's first name and surname) File management: The data records are to be saved in a linked list. The current status of the reservations should be written to the "reservierungen.txt" file. If the file does not yet exist, it should be created. Otherwise the data should be overwritten. When the program is started, the file is to be read and the linked list (if there are data records) is to be filled with the data.
CS 340 Milestone One Guidelines and Rubric Overview: For this assignment, you will implement the fundamental operations of create, read, update,
Retail Transaction Programming Project Project Requirements: Develop a program to emulate a purchase transaction at a retail store. This
7COM1028 Secure Systems Programming Referral Coursework: Secure
Create a GUI program that:Accepts the following from a user:Item NameItem QuantityItem PriceAllows the user to create a file to store the sales receip
CS 340 Final Project Guidelines and Rubric Overview The final project will encompass developing a web service using a software stack and impleme