Which of the following changes can be made so that the code segment works as intended

Source code is the fundamental component of a computer program that is created by a programmer. It can be read and easily understood by a human being. When a programmer types a sequence of C programming language statements into Windows Notepad, for example, and saves the sequence as a text file, the text file is said to contain the source code. 

Source code and object code are sometimes referred to as the "before" and "after" versions of a compiled computer program. For script (noncompiled or interpreted) program languages, such as JavaScript, the terms source code and object code do not apply, since there is only one form of the code.

Programmers can use a text editor, a visual programming tool or an integrated development environment (IDE) such as software development kit (SDK) to create source code. In large program development environments, there are often management systems that help programmers separate and keep track of different states and levels of source code files. 

Licensing of source code

Source code can be proprietary or open, and licensing agreements often reflect this distinction.

When a user installs a software suite like Microsoft Office, for example, the source code is proprietary, and Microsoft only gives the customer access to the software's compiled executables and the associated library files that various executable files require to call program functions.

By comparison, when a user installs Apache OpenOffice, its open source software code can be downloaded and modified. 

Typically, proprietary software vendors like Microsoft don't share source code with customers for two reasons: to protect intellectual property and to prevent the customer from making changes to source code in a way that might break the program or make it more vulnerable to attack. Proprietary software licenses often prohibit any attempt to discover or modify the source code.

Open source software (OSS), on the other hand, is purposely designed with the idea that source code should be made available because the collaborative effort of many developers working to enhance the software can, presumably, help make it more robust and secure. Users can freely take open source code under public licenses, such as the GNU General Public License.

Purposes of source code

Beyond providing the foundation for software creation, source code has other important purposes, as well. For example, skilled users who have access to source code can more easily customize software installations, if needed.

Meanwhile, other developers can use source code to create similar programs for other operating platforms -- a task that would be trickier without the coding instructions.

Access to source code also allows programmers to contribute to their community, either through sharing code for learning purposes or by recycling portions of it for other applications.

Organization of source code

Many different programs exist to create source code. Here is an example of the source code for a Hello World program in C language:

/* Hello World program */

#include<stdio.h>

main()
{
printf("Hello World");

}

Even a person with no background in programming can read the C programming source code above and understand that the goal of the program is to print the words "Hello World." In order to carry out the instructions, however, this source code must first be translated into a machine language that the computer's processor can understand; that is the job of a special interpreter program called a compiler -- in this case, a C compiler.

After programmers compile source code, the file that contains the resulting output is referred to as object code.

Object code consists mainly of the numbers one and zero and cannot be easily read or understood by humans. Object code can then be "linked" to create an executable file that runs to perform the specific program functions.

Source code management systems can help programmers better collaborate on source code development; for example, preventing one coder from inadvertently overwriting the work of another.

History of source code

Determining the historical start of source code is a subjective -- and elusive -- exercise. The first software was written in binary code in the 1940s, so depending on one's viewpoint, such programs may be the initial samples of source code.

One of the earliest examples of source code as we recognize it today was written by Tom Kilburn, an early pioneer in computer science. Kilburn created the first successful digital program held electronically in a computer's memory in 1948 (the software solved a mathematical equation).

Which of the following changes can be made so that the code segment works as intended
Tom Kilburn's highest factor routine

In the 1950s and '60s, source code was often provided for free with software by the companies that created the programs. As growing computer companies expanded software's use, source code became more prolific and sought after. Computing magazines prior to the internet age would often print source code in their pages, with readers needing to retype the code character for character for their own use. Later, floppy disks decreased the price for electronically sharing source code, and then the internet further deleted these obstacles.

This was last updated in September 2019

Continue Reading About source code

  • The value of running security analysis tools against source code
  • Learn how various computer languages work
  • How to properly use open source libraries
  • How a source code strategy can help with automating version control

Dig Deeper on Application development and design

  • Which of the following changes can be made so that the code segment works as intended
    compiler

    Which of the following changes can be made so that the code segment works as intended

    By: Robert Sheldon

  • Which of the following changes can be made so that the code segment works as intended
    build

    Which of the following changes can be made so that the code segment works as intended

    By: Katie Terrell Hanna

  • Which of the following changes can be made so that the code segment works as intended
    runtime

    Which of the following changes can be made so that the code segment works as intended

    By: Ben Lutkevich

  • Which of the following changes can be made so that the code segment works as intended
    3 simple Java Hello World examples

    Which of the following changes can be made so that the code segment works as intended

    By: Cameron McKenzie

Which of the following best describes the behavior of the code segment?

Which of the following best describes the behavior of the code segment? The code segment works as intended but only when the sum of the three lengths is an integer or the decimal part of the sum of the three lengths is greater than or equal to 0.5.

What if anything is printed as a result of executing the code segment?

What, if anything, is printed as a result of executing the code segment? E. Nothing is printed because the code will not compile.

Which of the following best describes the value assigned to b when the code segment is executed?

What best describes the value assigned to b when the code segment is executed? The random method returns a value between 0.0, inclusive, and 1.0, exclusive.

Which of the following best explains why the code segment does not compile?

Which of the following best identifies the reason the code segment does not compile? The reset method does not return a value that can be printed.