JAMIA 2026 — Computer PYQ
JAMIA | Computer | 2026Which of the following symbols is used to represent a decision in a flowchart?
Choose the correct answer:
- A.
Rectangle
- B.
Diamond
(Correct Answer) - C.
Parallelogram
- D.
Oval
Diamond
Explanation
The correct option is (b) Diamond.
Detailed Explanation
A flowchart uses standardized geometric shapes to visually map out the workflow or steps of an algorithm. Each shape corresponds to a specific type of operation:
Decision Symbol: The Diamond symbol indicates a decision point or conditional branch in a logic sequence. It typically contains a question (e.g., x > 5?) and produces multiple outgoing paths based on boolean evaluations:
Diamond⟶Decision (True / False or Yes / No)
Functions of Other Flowchart Symbols:
(a) Rectangle: Represents a standard Process or computational operation step (e.g., calculation or variable assignment like A=B+C).
(c) Parallelogram: Indicates an Input / Output operation (e.g., reading data or printing values).
(d) Oval: Serves as the Terminal symbol, designating the start or end points of the algorithm:
Oval⟶Start / Stop
Therefore, the Diamond shape is uniquely designated for making decisions within a flowchart configuration.
