Difficulty: Easy
Correct Answer: IS A<10
Explanation:
Introduction / Context:
Flowcharts use standardized symbols to represent program logic. The diamond denotes a decision point—a Boolean test whose outcome directs control flow along different branches. Identifying which statements belong in a decision symbol is fundamental to algorithm design and documentation.
Given Data / Assumptions:
Concept / Approach:
A decision node asks a question such as 'A < 10?' and branches accordingly. 'IS A<10' expresses a condition. Assignment (S = B - C) changes state; printing (PRINT A) is output; data declarations are neither tests nor runtime decisions.
Step-by-Step Solution:
Verification / Alternative check:
Flowchart conventions from software engineering texts consistently place relational tests in diamonds and actions in rectangles/parallelograms.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
IS A<10.
Discussion & Comments