Complete the code to name the main components of a sequence diagram.
A sequence diagram shows interactions between [1] over time.Sequence diagrams illustrate how objects interact with each other in a time sequence.
Complete the code to identify the element that represents the time progression in a sequence diagram.
The vertical dashed line in a sequence diagram is called a [1] and shows the object's lifetime.
The lifeline is a vertical dashed line that represents the existence of an object over time.
Fix the error in the description of message arrows in a sequence diagram.
A solid arrow with a filled arrowhead represents a [1] message, which is synchronous.
A synchronous message is shown with a solid arrow and filled arrowhead, indicating the sender waits for a response.
Fill both blanks to complete the description of activation boxes and return messages.
The [1] box shows when an object is active, and a [2] message is shown with a dashed arrow.
The activation box indicates when an object is performing an action. A return message is shown with a dashed arrow to indicate a response.
Fill all three blanks to complete the code for a simple sequence diagram fragment.
object1 -> object2: [1] object2 [2] [3]
The first line shows a message callMethod() sent from object1 to object2. The second line shows a return message with a dashed arrow --> back to object1.