SOFTWARE ENGINEERING ETHICS AND PROFESSIONAL PRACTICES
SOFTWARE LICENSING AND INTELLECTUAL PROPERTY
Question
[CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
|
|
a text listing of commands to be compiled or assembled into an executable computer program.
|
|
code that is designed to run virtual machines on different platforms.
|
|
code run from a browser.
|
|
a command-line interface.
|
Detailed explanation-1: -Source code is generally understood to mean programming statements that are created by a programmer with a text editor or a visual programming tool and then saved in a file. Object code generally refers to the output, a compiled file, which is produced when the Source Code is compiled with a C compiler.
Detailed explanation-2: -A compiler takes the program code (source code) and converts the source code to a machine language module (called an object file). Another specialized program, called a linker, combines this object file with other previously compiled object files (in particular run-time modules) to create an executable file.
Detailed explanation-3: -The correct answer is Compiler. Compiler-A compiler is a special program that processes statements written in a particular programming language and turns them into machine language or “code” that a computer’s processor uses.