Question:

Which of the following sequence is correct?

Show Hint

The process involves compiling source code into object code, and then linking it to generate the final executable. Always remember the correct order to avoid errors in the build process.
  • Source code - linker - object code - compiler - executable code
  • Object code - linker - source code - compiler - executable code
  • Source code - compiler - object code - linker - executable code
  • Object code - compiler - source code - linker - executable code
Hide Solution
collegedunia
Verified By Collegedunia

The Correct Option is C

Solution and Explanation

The correct sequence of the software development process is: 1. Source code is written by the programmer in a high-level programming language. 2. Compiler translates the source code into object code, which is in machine language but not yet executable. 3. The linker then combines the object code with other necessary libraries or modules to create the final executable code. Thus, the sequence is: Source code → Compiler → Object code → Linker → Executable code.
Was this answer helpful?
0
0