Answer:
Annotation symbol
Explanation:
A flowchart is a diagram that is used to show and represent a workflow, process or algorithm. Flow charts are used in designing processes or programs. Flow charts are usually designed using boxes and arrows.
An annotation symbol is a symbol used in flowchart to hold comments and it is usually represented by a three-sided box connected to the step it references by a dashed line.
Gravity Falls
Adventure Time
SpongeBob SquarePants,
Cailou
Bubble Guppies
Dora
Teletubbies
Answer:
c. Group use cases by actor.
Explanation:
A use case is used to describe interaction between systems and users to achieve a goal. Mostly, a list of possible interaction between the system and the user is identified. The user can be a single person or a group. By using use case, the requirement of a systems is identified from a users point of view.
Answer:
#program in Python
#variables
given="John"
middle="Fitzgerald"
family="Kennedy"
#find first character of each variable and ptint
print("{}.{}.{}".format(given[0],middle[0],family[0]))
Explanation:
Declare and initialize variables "given" with "John","middle" with "Fitzgerald" and "family" wit "Kennedy".Print the first character of each variables separated by a "." in between of each character.
Output:
J.F.K