Difficulty: Easy
Correct Answer: Process
Explanation:
Introduction / Context:
A flowchart is a graphical tool used in systems analysis and software engineering to communicate how data moves and how decisions and computations occur. Each symbol has a specific, industry-recognized meaning so that developers, analysts, and stakeholders can read the logic consistently. The question asks which symbol denotes a calculation or any generic processing step.
Given Data / Assumptions:
Concept / Approach:
In conventional flowchart notation, the Process symbol (a rectangle) indicates an operation that changes data: calculations, variable assignments, data conversions, or any transformation that is not specifically input, output, or a decision. The Process block is the backbone of algorithmic steps because most logic involves transforming inputs into outputs through a series of operations.
Step-by-Step Solution:
Verification / Alternative check:
Any introductory systems analysis reference maps calculation steps to a rectangle. For example, “Total = Price * Quantity” would be drawn inside a Process block, not an I/O or terminator symbol.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing the Input/Output parallelogram with a Process rectangle; placing computations in a Decision diamond rather than using Decision solely for yes/no branching.
Final Answer:
Process
Discussion & Comments