1. Homepage
  2. Programming
  3. SEHH2042 Computer Programming Group Project - Flight Schedule Management System

SEHH2042 Computer Programming Group Project - Flight Schedule Management System

Engage in a Conversation
HKCCSEHH2042SEHS2042Computer ProgrammingFlight Schedule Management SystemC++

SEHH2042/SEHS2042 Computer Programming Group Project – Flight Schedule Management System (Due: 23:59, 2 Dec 2023, Saturday) CourseNana.COM

Expected Learning Outcomes CourseNana.COM

  •   develop computer programs in one or more high level language programming environment; CourseNana.COM

  •   design and develop structured and documented computer programs; CourseNana.COM

  •   explain the fundamentals of object-oriented programming and apply it in computer program CourseNana.COM

    development; CourseNana.COM

  •   integrate the computer programming techniques to solve practical problems. CourseNana.COM

    Introduction CourseNana.COM

    In this assignment, you are going to develop a “Flight Schedule Management System” that runs in the command line environment. The system stores the schedule and status of arrival and departing flights of Lion Rock City. Users of the system will be airport personnel, who can make changes and search for information about the flight schedule and status. CourseNana.COM

    Tasks CourseNana.COM

  •   Each group is required to write a Win32 Console Application program called FSMS.cpp. CourseNana.COM

  •   Each student is required to submit a video recording (at most 2-minute long) to demonstrate CourseNana.COM

    his/her individual contribution in the group project. CourseNana.COM

  •   Each student is required to submit a Peer-to-Peer evaluation form (online or through the given CourseNana.COM

    Word file) via Blackboard. CourseNana.COM

    Program Requirements CourseNana.COM

R0 When the program starts, the console should display a welcome message, followed by the Main Menu of the program. Users can enter the options of the corresponding actions (see R1 to R6 below). CourseNana.COM

     Welcome Message designed by your group
     *** Main Menu ***
     [1] Load Starting Data
     [2] Edit Airline
     [3] Show Schedule
     [4] Search Flight
     [5] Edit Flight

SEHH2042/SEHS2042 23-24 Semester One – Group Project 1 CourseNana.COM

     [6] Credits and Exit
     *****************
     Option (1 - 6):

R1 [1] Load Starting Data CourseNana.COM

When the user inputs 1 in the Main Menu, the system is loaded with starting data. The starting data includes records of (1) airline, and (2) flight information as shown in R1.1 below. After the starting data is loaded, the system returns to the Main Menu. CourseNana.COM

R1.1 The starting data to be loaded, together with the required data format of the data fields, are described below. CourseNana.COM

Airline records CourseNana.COM

Flight Code Prefix CourseNana.COM

BA CX HX JL UO CourseNana.COM

Airline Name CourseNana.COM

British Airways Cathay Pacific Hong Kong Airlines Japan Airlines Hong Kong Express CourseNana.COM

Data format of each field: CourseNana.COM

  •   Flight Code Prefix: A string with two letters CourseNana.COM

  •   Airline Name: A string that may contain white space (assume at most 100 characters CourseNana.COM

long) CourseNana.COM

Flight information records CourseNana.COM

Flight Code CourseNana.COM

CX251 BA732 JL114 UO711 CX651 HX892 UO417 BA337 CX657 JL228 CourseNana.COM

Date CourseNana.COM

12/09/23 20/11/23 12/10/23 15/12/23 30/09/23 01/11/23 15/12/23 22/10/23 09/11/23 15/10/23 CourseNana.COM

Time Origin/ Destination CourseNana.COM

12:15 SYD 06:55 LHR 14:45 NRT 09:00 ICN 15:55 KHH 18:00 BKK 15:55 SIN 23:50 MAN 21:00 NYC 19:00 CTS CourseNana.COM

Status CourseNana.COM

On Time On Time Delayed On Time Cancelled Delayed On Time On Time Delayed Cancelled CourseNana.COM

Direction CourseNana.COM

Arrival Arrival Arrival Arrival Arrival Departing Departing Departing Departing Departing CourseNana.COM

SEHH2042/SEHS2042 23-24 Semester One – Group Project CourseNana.COM

Data format of each field: CourseNana.COM

  •   Flight Code: A string which starts with two letters (the existing flight code prefix), CourseNana.COM

    followed by three digits CourseNana.COM

  •   Date: The date of arrival or departure of the flight, taking the format “DD/MM/YY” CourseNana.COM

  •   Time: The time of arrival or departure of the flight, taking a 24-hour format “hh:mm” CourseNana.COM

  •   Origin/ Destination: The origin (or destination) airport of the arrival (or departing) fight CourseNana.COM

    in the form of a 3-character airport code CourseNana.COM

  •   Status: Status of the flight, which can be “On Time”, “Delayed”, “Cancelled” CourseNana.COM

  •   Direction: A field that indicates whether the flight is arriving or departing Lion Rock CourseNana.COM

    City CourseNana.COM

R1.2 Options 2 to 5 in the Main Menu are enabled only after the system is loaded with the starting data. If the user enters options 2 to 5 before starting data is loaded, an error message should be shown, and then the system returns to the Main Menu. CourseNana.COM

R2 [2] Edit Airline CourseNana.COM

[After the starting data is loaded] When the user inputs 2 in the Main Menu, the system displays all the fields of all airline records in the form of a table. The user then can choose to (1) add a new airline, (2) edit an existing airline, or (3) delete an existing airline. After the editing, the updated airline table (for successful editing operations) or result of the editing operation (for unsuccessful editing operations) should be shown. The system then returns to the Main Menu. CourseNana.COM

R2.1 Your program needs to check against invalid operations on airline editing. In particular: CourseNana.COM

  •   The flight code prefix should be in correct format, and it should be unique in the system. Adding a new airline with an existing flight code prefix, or one with incorrect format should result in an error (unsuccessful editing operation). CourseNana.COM

  •   The user inputs the flight code prefix to choose the airline to edit. Only the airline name can be changed for an existing airline record. CourseNana.COM

  •   The user inputs the flight code prefix to choose the airline to delete. An airline can be deleted only if there is no flight associated with it from the flight information. CourseNana.COM

  •   During airline edit or delete, a wrong flight code prefix input results in an error (unsuccessful editing operation). CourseNana.COM

R3 [3] Show Schedule CourseNana.COM

[After the starting data is loaded] When the user inputs 3 in the Main Menu, the system prompts for the next input from user to choose displaying either the flight arrival schedule CourseNana.COM

SEHH2042/SEHS2042 23-24 Semester One – Group Project 3 CourseNana.COM

or the flight departure schedule. After getting the user’s selection, the flight schedule should be displayed neatly in a table format. The following fields should be included in the display: Flight Code, Date, Time, Origin/ Destination and Status. Flight records should be displayed in sorted order, from earliest to latest. After the schedule is shown, the system returns to the Main Menu. CourseNana.COM

R4 [4] Search Flight CourseNana.COM

[After the starting data is loaded] When the user inputs 4 in the Main Menu, the Search Flight Menu should be displayed, and the user can enter the options of the corresponding actions (see R4.1 to R4.3 below). CourseNana.COM

     ***** Search Flight Menu *****
     [1] Search Flight by Flight Code
     [2] Search Flight by Origin/ Destination
     [3] Search Upcoming Flights
     [4] Return to Main Menu
     **************************
     Option (1 - 4):
  1. R4.1  [1] Search Flight by Flight Code CourseNana.COM

    When such option is chosen, the system prompts for the flight code input by the user. All flight records that match the input flight code (anytime, for both directions) will be displayed. See R4.6 for the flight records display requirement. CourseNana.COM

  2. R4.2  [2] Search Flight by Origin/ Destination CourseNana.COM

    When such option is chosen, the system prompts for the airport code input by the user. All flight records that match the input airport code (anytime, for both directions) will be displayed. See R4.6 for the flight records display requirement. CourseNana.COM

  3. R4.3  [3] Search Upcoming Flights CourseNana.COM

    When such option is chosen, the system displays all flight records that are scheduled after the current date (the date when the program is executed). See R4.6 for the flight records display requirement. CourseNana.COM

  4. R4.4  [4] Return to Main Menu CourseNana.COM

    When such option is chosen, the system returns to the Main Menu. CourseNana.COM

SEHH2042/SEHS2042 23-24 Semester One – Group Project 4 CourseNana.COM

  1. R4.5  Stay at the Search Flight Menu CourseNana.COM

    Following R4.1, R4.2 and R4.3, after the information is displayed or error messages for wrong input, the system should return to the Search Flight Menu. CourseNana.COM

  2. R4.6  Flight Records Display Requirement
    The flight records retrieved under [4] Search Flight should be displayed in sorted order, CourseNana.COM

    from earliest to latest. The display should contain ALL fields from the flight information. CourseNana.COM

R5 [5] Edit Flight CourseNana.COM

[After the starting data is loaded] When the user inputs 5 in the Main Menu, he/she then can choose to (1) add a new flight, (2) edit an existing flight, (3) delete an existing flight, or (4) delete all cancelled flights. After the editing, result of the editing operation (changes made for successful editing, or error messages for unsuccessful editing) should be shown. The system then returns to the Main Menu. CourseNana.COM

R5.1 Your program needs to check against invalid operations on flight editing. CourseNana.COM

Add a new flight record CourseNana.COM

  •   All fields for a flight record should be input, and in correct format. CourseNana.COM

  •   The system should not be added with duplicate flight records, i.e., records with same CourseNana.COM

    flight code, same date and same time. CourseNana.COM

  •   You can assume the system does not store more than 100 flight records. CourseNana.COM

  •   Any wrong inputs should result in an unsuccessful operation, and no update to the CourseNana.COM

    system data should be carried out. CourseNana.COM

    Edit or delete an existing flight record CourseNana.COM

  •   The user inputs the flight code to select a record to edit or delete. If there are more than one records with the same flight code, the user is further prompted to choose which record to edit or delete by using a numeric input. CourseNana.COM

  •   For editing, only the flight status can be changed for an existing flight record. CourseNana.COM

  •   Any wrong flight code inputs should result in an unsuccessful operation, and no update CourseNana.COM

    to the system data should be carried out. CourseNana.COM

    Delete all cancelled flights CourseNana.COM

The system prompts for user’s “Yes/No” confirmation. If the user inputs ‘y’ or ‘Y’, all flight records with the “Cancelled” status should be removed from the system. If the user inputs ‘n’ or ‘N’, no update to the system data should be carried out. CourseNana.COM

SEHH2042/SEHS2042 23-24 Semester One – Group Project 5 CourseNana.COM

  1. R6  [6] Credits and Exit CourseNana.COM

    When the user inputs this option, the system prompts for user’s confirmation. If the user inputs ‘n’ or ‘N’, the system returns to the Main Menu. If the user inputs ‘y’ or ‘Y’, the system displays the personal particulars (student name, student ID, tutorial group) of the group members and terminates. Other input is not acceptable and the system should ask the user to confirm again. CourseNana.COM

  2. R7  Suitable checking on user’s input is expected, except in situations with assumptions stated in the requirements above. Appropriate error messages should be printed whenever unexpected situation happens, e.g., input value out of range, incorrect time format, etc. CourseNana.COM

  3. R8  The use of functions (in addition to main function) and classes (i.e., OOP design) are expected in your program. Appropriate comments should be added in your source code file. CourseNana.COM

  4. R9  Creativity and Critical Thinking: Use suitable format to present all required information of airline and flight schedule clearly and neatly. Additional features can be added. CourseNana.COM

Tips CourseNana.COM

  1. To handle unexpected input error (e.g. input a character to an integer variable), you may use the following code appropriately in your program: CourseNana.COM

         cin.ignore();    // Discard the content in the input sequence.
         cin.clear();     // Reset the input error status to no error.
    
  2. To write codes about getting current date and comparing two dates, try to study further about the time(), mktime(), localtime() functions and the usage of “struct tm” structure under <ctime>. CourseNana.COM

Video Requirements CourseNana.COM

This is an individual task under this group project. Each student needs to create a video recording which records either (1) your explanation on the working algorithms of the codes that you designed and wrote, or (2) the testing of project codes (those you wrote or the whole group’s work) using test case scenarios. See points below for the specific requirements of the video recording: CourseNana.COM

  •   Duration of video is at maximum 2 minutes long. Use MS Teams to record. CourseNana.COM

  •   The video recording is used to demonstrate your contribution in the group project. If your work done is too much to be all included in the 2-minute video, choose the most important/ CourseNana.COM

    representative work to record and explain.
    SEHH2042/SEHS2042 23-24 Semester One – Group Project 6 CourseNana.COM

  •   At the beginning, introduce the objective of your video: whether you are going to (1) explain the working algorithms of your codes, or (2) run and test your project codes. CourseNana.COM

  •   The video should include your voice recording (in English) as you give the presentation (either code explanation or the code testing). Your voice should be clear and loud enough. CourseNana.COM

  •   The video should show the computer screen as you give the presentation. CourseNana.COM

  •   The video should keep showing your English name, Student ID and lecture group on the screen CourseNana.COM

    (text information) for identity verification. It is optional to show your face in the recording. CourseNana.COM

  •   Show the whole screen, not just part of the screen. While showing the source codes or code- CourseNana.COM

    testing results, make sure the text is clearly shown, large enough and visible. CourseNana.COM

    Submission CourseNana.COM

    Source File: Each group submits one source code file (i.e., FSMS.cpp).
    Video Recording: Each student submits the shared video link via Blackboard, through which your video recording can be viewed by your subject lecturer successfully.
    [IMPORTANT: Remember to set up the access right correctly for the shared link.]
    Peer-to-peer Evaluation: Each student fills in the peer-to-peer evaluation form via Blackboard. CourseNana.COM

    All submission should be done through Blackboard by 23:59, 2 Dec 2023. Late submission is subject to 20% deduction in your final marks for each day (including public holidays and Sundays). No late submission is allowed 4 days after the due date. CourseNana.COM

Components Weighting CourseNana.COM

1. Program (FSMS.cpp)
2. Video Recording
Total 100% CourseNana.COM

80% (Group & Individual)* CourseNana.COM

20% (Individual) CourseNana.COM

* Marks for (1) Program is determined by the group-based marks (80%) and percentage of individual contribution (20%), where the percentage of individual contribution is directly proportion to the average marks given by group members in the peer-to-peer evaluation. CourseNana.COM

Grading Criteria (Program) CourseNana.COM

Your program will be executed with different test cases in Microsoft Visual Studio. Any deviation from the requirement is considered as incorrect and no mark is given for that case. Your program will also be marked based on its user-friendliness and creativity (e.g., information display, appropriate prompt messages and action result messages if needed). CourseNana.COM

SEHH2042/SEHS2042 23-24 Semester One – Group Project 7 CourseNana.COM

CourseNana.COM

Aspects CourseNana.COM

Percentage CourseNana.COM

Program correctness
(Follow ALL instructions, marks deduction on errors found)
CourseNana.COM

Program design
(Appropriate use of functions, use of class, modularity, etc.)
CourseNana.COM

Program standard
(Use of variable names, indentation, line spacing, clarity, comments, etc.)
CourseNana.COM

Algorithm design
(Use of reasonable algorithms and data structures)
CourseNana.COM

User-friendliness
(Clear guidelines to users, messages to users, etc.)
CourseNana.COM

Creativity and critical thinking (Additional useful features) CourseNana.COM

Total (Group Mark) CourseNana.COM

Note: the length of your program does not affect the grading of the assignment. However, appropriate use of loops and functions are expected to avoid too many repeated codes in your program, which contributes to the program design score of this assignment. CourseNana.COM

Get in Touch with Our Experts

WeChat (微信) WeChat (微信)
Whatsapp WhatsApp
HKCC代写,SEHH2042代写,SEHS2042代写,Computer Programming代写,Flight Schedule Management System代写,C++代写,HKCC代编,SEHH2042代编,SEHS2042代编,Computer Programming代编,Flight Schedule Management System代编,C++代编,HKCC代考,SEHH2042代考,SEHS2042代考,Computer Programming代考,Flight Schedule Management System代考,C++代考,HKCChelp,SEHH2042help,SEHS2042help,Computer Programminghelp,Flight Schedule Management Systemhelp,C++help,HKCC作业代写,SEHH2042作业代写,SEHS2042作业代写,Computer Programming作业代写,Flight Schedule Management System作业代写,C++作业代写,HKCC编程代写,SEHH2042编程代写,SEHS2042编程代写,Computer Programming编程代写,Flight Schedule Management System编程代写,C++编程代写,HKCCprogramming help,SEHH2042programming help,SEHS2042programming help,Computer Programmingprogramming help,Flight Schedule Management Systemprogramming help,C++programming help,HKCCassignment help,SEHH2042assignment help,SEHS2042assignment help,Computer Programmingassignment help,Flight Schedule Management Systemassignment help,C++assignment help,HKCCsolution,SEHH2042solution,SEHS2042solution,Computer Programmingsolution,Flight Schedule Management Systemsolution,C++solution,