Ask Question
Today, 06:48

True or Flase

1. The statement:

loop - = + +count;

has the same effect as the statements:

count = count+1;

loop = loop - count;

+1
Answers (1)
  1. Today, 08:45
    0
    True.

    Explanation:

    In statement 1 we have loop-=++count;

    which means loop = loop - (++count);

    Where + + is a pre increment operator which increases the value of count by 1 before using it.

    In the other statement also we are doing the same thing.

    Increasing the count by 1 and decreasing it from the loop variable.

    Hence we conclude that the answer is True.
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “True or Flase 1. The statement: loop - = + +count; has the same effect as the statements: count = count+1; loop = loop - count; ...” 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