Reputation: 157
I have a quiz system scenario and I have drown my Use case, now I want to draw a sequence diagram which describe the the choosing quiz by student as following:
Edit: The following diagram is my attempt.
Upvotes: 0
Views: 2137
Reputation: 8145
Refine the problem by identifying other actors that constitute the "system". Quiz, Question and Answer look like data objects that will be transferred throughout the system, with no activity or behavior of their own, it is not likely there will be any special messages they receive or send.
Similarly to how http://www.uml-diagrams.org/sequence-diagrams-examples.html#facebook-authentication refines original use case "system authenticates user using his facebook account"
where the original abstract term "system" expands into "WebBrowser", "Application", "Facebook Authorization Server", "Facebook Content Server" which can be further refined down into more concrete classes which will turn into actual code
Upvotes: 2
Reputation: 3790
Sequence diagram is drawn between the objects who interact with each other. Here in your scenario The student will interact with system and not with the teachers or quizes. So the sequence diagram of your scenario will be like this:
**
Upvotes: 1