In the context of software project management, what is LOC an acronym for?

2025

In the context of software project management, what is LOC an acronym for?

  1. A.

    Line of Change

  2. B.

    Level of Complexity

  3. C.

    Lines of Code

  4. D.

    List of Components

Attempted by 72 students.

Show answer & explanation

Correct answer: C

Software project management uses dedicated size metrics to estimate effort, cost, and schedule before development begins. One of the oldest and most common size metrics is the count of source lines making up a program, since estimation models such as COCOMO take this line count as their primary size input.

This exact metric is denoted by the acronym LOC — Lines of Code (also written SLOC, Source Lines of Code). Here it refers to the number of source code lines that make up the software, the standard unit used when specifying or comparing project size this way.

  • Line of Change: no established sizing metric in estimation practice is denoted by this expansion; code-change volume is tracked through separate mechanisms such as diff or churn counts.

  • Level of Complexity: program complexity is captured by dedicated metrics such as Cyclomatic Complexity, not by this line-count-based acronym.

  • List of Components: enumerating a system's parts is handled through separate artifacts such as a bill of materials or component diagram, not through this sizing acronym.

Hence, among the offered options, the acronym denotes the count of source code lines used as an estimation-model input.

Explore the full course: Bpsc

Loading lesson…