go to the color section and change the paint color
Answer:
Counters are used to run the loop.
Accumulators are used to calculate and store the result.
Explanation:
In loops variables counters and accumulators are very important.The counter variable is used to increase the loop or move to the next iteration.
The accumulator variable is used to calculate and store the result of an operation in the loop.
For example:-
int i=0;
int sum=0;
while(i<7)
{
sum=sum+i;
i++;
}
In this while loop the counter variable is i and the accumulator variable is sum.Without the counter variable is not increased the loop will keep looping over the same value of i that is 0.
In the loop the accumulator variable sum is used to calculate the sum of integers form i=0 to 6.
<h2>
Answer:</h2><h3>NTFS is recommended according to given scenario.</h3>
<h2>
Explanation:</h2>
Following are some point that help you understand the term NTFS:
- NTFS is abbreviation of New Technology File System.
- It is a file system that is commonly used in Windows Operating system now a days. Today's computers use NTFS widely.
- Files are stored and retrieved on hard drive by means of the NTFS.
- NTFS is somehow an advanced version o FAT(File allocation Table) and HPFS.
- NTFS is adopted as it is extendtable as well as secure.
<h3>I hope it will help you!</h3>
Answer:
The answer of the given question is Inorder.
Explanation:
In the inorder traversal the binary tree start from the root and visited all the vertex in the tree .
The inorder follow the following Algorithm
1. Traverse in the left subtree.
2 Print the data (visit the node ).
3 Traverse in the Right subtree.
The statement which best explains how algorithms running on a computer can be used to solve problems is; D. Some problems cannot be solved by an algorithm.
<h3>What is an algorithm?</h3>
An algorithm is simply a standard formula or procedures which is made up of a set of finite steps and instructions that must be executed on a computer, so as to proffer solutions to a problem or solve a problem under appropriate conditions.
However, it should be noted that it is not all problems that can be solved by an algorithm, especially because the required parameters and appropriate conditions are not feasible or met.
Read more on algorithm here: brainly.com/question/24793921