Which one of the following is not a part of program design phase?
Algorithm
Pseudocode
Flowchart
Code
Answer is Right!
Answer is Wrong!
This question was previously asked in
UPSC CBI DSP LDCE – 2023
The program design phase focuses on creating a blueprint for the software system. This involves defining how the program will work logically and structurally before writing the actual code.
– Algorithm: A set of well-defined instructions for solving a problem. Developing algorithms is a key part of the design phase.
– Pseudocode: An informal high-level description of the operating principle of an algorithm. It’s a tool used in design to outline the algorithm’s logic.
– Flowchart: A diagram representing the sequence of operations in an algorithm or process. Flowcharts are used in design to visually represent the program’s logic flow.
– Code: The actual source code written in a programming language (like C++, Java, Python, etc.). Writing code belongs to the Implementation phase, which follows the Design phase.
Therefore, ‘Code’ is not a part of the program design phase.