Respuesta :

A named constant is a name that represents a value that does not change during the program's execution. named constant variable signature named literal key term

Answer:

A constant is a name that represents a value that does not change during the program's execution. named constant variable signature named literal key term.

Explanation:

The correct answer is constant.

Each language implements constants in different ways. For example, in C you use the clause #define at the header, along with the #include clauses. In Java you can declare a variable with the final clause.

It is good practice of programming to use constants instead of numbers in the code. If you want to modify the value of the constant before executing the program, you just change at the declaration, and not at the entire code.

So:

A constant is a name that represents a value that does not change during the program's execution. named constant variable signature named literal key term.