go to previous page   go to home page   go to next page hear noise

Answer:

A high level language. Programmers can create programs in much less time (costing much less money) by using a high level language.


Source Programs

Programmers create programs by writing commands in a high level language. A high level language program consists of lines of text that have been created with a text editor and are kept in a file on the hard disk. For example, here is a complete program in C (Java will be discussed later):

#include <stdio.h>
main()
{
  int sum = 0;
  sum = 2 + 2;
  printf( "%d\n", sum );
}

This program could be saved on the hard disk in a file called addup.c. Like all files, it consists of a sequence of bytes. Since it is a text file, these bytes represent character data. You can edit the file with a text editor and print the file on a printer. It does not contain machine instructions. If the bytes are copied into main memory, they cannot run as a program without some extra work being done.

A source program is a text file that contains instructions written in a high level language. It can not be executed (made to run) by a processor without some additional steps.

A source program is also called a source file, source code, or sometimes, just source.

Usually a source program is translated into a machine language program. An application program called a translator takes a source program as input and produces a machine language program as output.

A machine language program is also called an executable program, executable file, or sometimes, just executable.

For example, the C program addup.c could be translated into an executable program. The executable program might be called addup.exe and can be saved on the hard disk. Now the executable version of the program can be copied into main memory and executed.

The word compile means the same thing as translate. So one can say that a source program is compiled into an executable program.


QUESTION 9:

Say that a source program has been translated into an executable program. The executable program has been run a few times, and the programmer decides to make a change to the program. Where is the change made? To the source program or to the executable program?