'Activity Diagram, is this a acceptable activity Diagram?

I'm just starting to learn about UML and now learning Activity diagram. I was wondering if this would be acceptable as a activity diagram for the program? If not how could I improve?

It's a simple C# console program and works like this:

Starting, the user will receive a bunch of animals. Then from a main menu choose a task/option to do. Some of the menu options also requires user to choose one of animals (to preform task with). After the task is done user will be returned to the menu to choose something else until the user chooses to quit.

enter image description here



Solution 1:[1]

Your AD isn't too bad. Just a few errors:

  • Choose what animal has three incomming control flows. However, only one of them will present a token since only one of the actions above is possible to be chosen. That's where the deadlock is. You fix that simply by first using a MergeNode (like you did at the bottom) right before that action.
  • The second flaw is with the labels you placed along the control flows. That would just be names. But actually you want them to be guards. That is the let pass a token only if the condition inside is fulfilled. Here the fix is to use brackets like [Quit chosen] to make them guards.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 qwerty_so