0% found this document useful (0 votes)
9 views1 page

Level1 DFD

The document outlines a flowchart for an administrative system with various functionalities including login, course management, user data management, and feedback viewing. Each process is connected to a database for data retrieval and updates. The flowchart illustrates the interactions between the admin and the system components.

Uploaded by

try.vasupatel
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
9 views1 page

Level1 DFD

The document outlines a flowchart for an administrative system with various functionalities including login, course management, user data management, and feedback viewing. Each process is connected to a database for data retrieval and updates. The flowchart illustrates the interactions between the admin and the system components.

Uploaded by

try.vasupatel
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

digraph {

rankdir=LR
Admin [label=ADMIN fillcolor=lightyellow shape=box style=filled]
P1 [label="1.0 LOGIN" shape=circle]
P2 [label="2.0 Manage Courses" shape=circle]
P3 [label="3.0 View Courses" shape=circle]
P4 [label="4.0 View Data" shape=circle]
P5 [label="5.0 View Feedback" shape=circle]
P6 [label="6.0 LOGOUT" shape=circle]
D1 [label=Database fillcolor=lightgray shape=parallelogram style=filled]
D2 [label=Courses fillcolor=lightgray shape=parallelogram style=filled]
D3 [label=User_table fillcolor=lightgray shape=parallelogram style=filled]
D4 [label=Feedback_table fillcolor=lightgray shape=parallelogram
style=filled]
Admin -> P1 [label="Request for login"]
P1 -> D1 [label="Check for login"]
D1 -> P1 [label=Reply]
P1 -> Admin [label=Response]
Admin -> P2 [label="Add/Edit Courses"]
P2 -> D2 [label="Insert Data"]
D2 -> P2 [label=Reply]
P2 -> Admin [label=Response]
Admin -> P3 [label="View, Edit, Delete Courses"]
P3 -> D2 [label="Perform Action"]
D2 -> P3 [label=Reply]
P3 -> Admin [label=Response]
Admin -> P4 [label="View, Add, Update User"]
P4 -> D3 [label="Perform Action"]
D3 -> P4 [label=Reply]
P4 -> Admin [label=Response]
Admin -> P5 [label="View Feedback"]
P5 -> D4 [label="Perform Action"]
D4 -> P5 [label=Reply]
P5 -> Admin [label=Response]
Admin -> P6 [label=Logout]
}

You might also like