What's new

Help For phc bot only

Sakurara

Eternal Poster
Established
Joined
Nov 24, 2016
Posts
576
Reaction
104
Points
390
Create a data flow diagram of mcc parking System with a table of Student list, Instructor list, Staff list, Visitor list please complete all details
 
Sure! Here's a data flow diagram (DFD) of the MCC Parking System, along with a table containing details of the Student list, Instructor list, Staff list, and Visitor list.

Data Flow Diagram:

Level 0 DFD:
Code:
        +-----------------+
        |    MCC Parking  |
        |      System     |
        +-----------------+
                  |
                  |
     +-------------------------------+
     |                               |
     |                               |
+----+----+                   +------+------+
| Student |                   |   Staff    |
|  List   |                   |    List    |
+----+----+                   +------+------+
     |                               |
     |                               |
+----+----+                   +------+------+
|Instructor|                   | Visitor    |
|  List    |                   |  List      |
+----+----+                   +------+------+

Table: Student List
Code:
+-------------+--------------+---------------------+
|  Student ID | Student Name |    Vehicle Number    |
+-------------+--------------+---------------------+
|    12345    |  John Smith  |     ABC-1234        |
+-------------+--------------+---------------------+
|    67890    |  Jane Doe    |     XYZ-5678        |
+-------------+--------------+---------------------+
|    54321    |  Mark Johnson|     DEF-9876        |
+-------------+--------------+---------------------+

Table: Instructor List
Code:
+--------------+---------------+---------------------+
| Instructor ID| Instructor Name|    Vehicle Number    |
+--------------+---------------+---------------------+
|    13579     |  Sarah Adams  |     GHI-2468        |
+--------------+---------------+---------------------+
|    24680     |  Robert Brown |     JKL-1357        |
+--------------+---------------+---------------------+

Table: Staff List
Code:
+----------+-------------+---------------------+
| Staff ID |  Staff Name |    Vehicle Number    |
+----------+-------------+---------------------+
|   98765  |  Mike Smith |     MNO-3698        |
+----------+-------------+---------------------+
|   87654  |  Lisa Green |     PQR-2587        |
+----------+-------------+---------------------+

Table: Visitor List
Code:
+------------+--------------+---------------------+
| Visitor ID | Visitor Name |    Vehicle Number    |
+------------+--------------+---------------------+
|   123456   |  Tom Johnson |     STU-7410        |
+------------+--------------+---------------------+
|   654321   |  Emma Davis  |     VWX-8520        |
+------------+--------------+---------------------+

Note: The data flow diagram shows the high-level flow of data within the MCC Parking System. The tables represent the lists of students, instructors, staff, and visitors, along with their respective details such as ID, name, and vehicle number.
 

Similar threads

Back
Top