Changes in computer technology have an effect on <span>everybody.</span>
My best guess is the last option (D) tools. Hope it helps
Answer:
Answer = 25-17
print("25-17", Answer)
Explanation:
You put the sum into a variable which in this case would be Answer and then you can output it with the question.
Answer:
The solution is implemented using C++
int getRowTotal(int a[][5], int row) {
int sum = 0;
for(int i =0;i<5;i++)
{
sum += a[row][i];
}
return sum;
}
Explanation:
This defines the getRow function and the parameters are arr (the 2 d array) and row and integer variable
int getRowTotal(int arr[][5], int row) {
This defines and initializes sum to 0
int sum = 0;
This iterates through the row and adds the row items
<em> for(int i =0;i<5;i++) {
</em>
<em> sum += arr[row][i];
</em>
<em> }
</em>
This returns the calculated sum
return sum;
}