0
0
Software Engineeringknowledge~10 mins

Activity diagrams in Software Engineering - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to name the main element used to represent an action in an activity diagram.

Software Engineering
The main element used to represent an action in an activity diagram is called a [1].
Drag options to blanks, or click blank then click option'
Aaction
Bactivity
Cstate
Dnode
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing 'action' with 'state' or 'activity'.
Using 'node' which is a more general term.
2fill in blank
medium

Complete the sentence to identify the symbol used to represent the start of an activity diagram.

Software Engineering
The symbol used to represent the start of an activity diagram is a [1] filled circle.
Drag options to blanks, or click blank then click option'
Ablack
Bhollow
Cdashed
Ddouble
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing hollow circle which represents states.
Confusing start and end symbols.
3fill in blank
hard

Fix the error in the description of the decision node symbol in activity diagrams.

Software Engineering
A decision node is represented by a [1] shape in an activity diagram.
Drag options to blanks, or click blank then click option'
Arectangle
Bcircle
Coval
Ddiamond
Attempts:
3 left
💡 Hint
Common Mistakes
Using circle or oval which represent other elements.
Confusing with action or state shapes.
4fill in blank
hard

Fill both blanks to complete the description of how parallel activities are shown in activity diagrams.

Software Engineering
Parallel activities are represented using [1] and [2] nodes.
Drag options to blanks, or click blank then click option'
Afork
Bjoin
Cdecision
Dmerge
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing decision which is for conditional branching.
Confusing with merge nodes used for merging alternate paths.
5fill in blank
hard

Fill all three blanks to complete the code snippet describing an activity diagram element with guard conditions.

Software Engineering
In an activity diagram, a transition labeled with [[1]] means the flow occurs if the condition [2] true. This label is called a [3].
Drag options to blanks, or click blank then click option'
Acondition
Bis
Cguard
Daction
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing guard with action.
Misunderstanding the role of the condition.