Identify the correct logical sequence for programming : A. Compilation B.…
2026
Identify the correct logical sequence for programming :
A. Compilation B. Editing C. Linking D. Execution
Choose the correct answer from the options given below :
- A.
D, B, A, C
- B.
A, B, D, C
- C.
A, B, C, D
- D.
B, A, C, D
Attempted by 103 students.
Show answer & explanation
Correct answer: D
The correct sequence for the programming lifecycle is Editing, Compilation, Linking, and Execution. First, code is written (Editing). Then, the source code is translated into machine code or object code (Compilation). Next, object files are combined with libraries to create an executable file (Linking). Finally, the program runs on the computer (Execution). Thus, the order is B -> A -> C -> D.