Ask Question
11 February, 03:53

Because one memory location can be used repeatedly with different values, you can write program instructions once and then use them for thousands of separate calculation. T/F

+2
Answers (1)
  1. 11 February, 07:04
    0
    True.

    Explanation:

    The statement written in the question is True. We can use one memory location and use it with different values.

    For example: - When we are using a loop be it for, while or do-while. The counter that we use for iteration is one and we use that counter to run the loop. We are using a single memory location and we are updating the count in that memory location many times.

    for (int i=0; i<1000; i++)

    {

    //body.

    }

    We are using i's memory location and changing it 1000 times.
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “Because one memory location can be used repeatedly with different values, you can write program instructions once and then use them for ...” in 📘 Computers and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers