Caiz22
Caiz22

Reputation: 817

Flow of Logic vs. Flow of Control

I have a series of statements on Sequence Diagrams, and don't know which is false:

Sequence Diagrams:


From my understanding the flow of control is to do with decisions, loops and the sequence. What is the difference between the flow of control and flow of logic? Or are these the same?

Upvotes: 0

Views: 114

Answers (1)

Yas Ikeda
Yas Ikeda

Reputation: 1096

Important point is what is controlled. In Sequence Diagram, it is entity (object) and message.

Then, you may easily see the top three statements are for Sequence Diagram because they all talk about message.

As the last statement says control from one activity to another, it is not talking about control of either of them. Rather it mentions activity, so that this is an explanation of Activity Diagram.

Upvotes: 1

Related Questions