Answer:
Here is the code for a classic C++ program that does it:
--------------------------------------------------------------------------------
#include <iostream>
using namespace std;
int main()
{
int sum = 0;
int n;
cout << "Input 10 numbers: " << endl;
for (int i = 0; i < 10; i++)
{
cin >> n;
sum += n;
}
cout << "Sum of the numbers: " << sum << endl;
}
--------------------------------------------------------------------------------
Explanation:
I'm assuming you know what "include", "using namespace std" and "int main()" do, so I will skip over those.
First, we declare a variable "sum" and initialize it with 0 so we can add numbers to it later.
Then, we declare a variable "n" that will be set as the input of the user.
The "for-loop" will iterate ( go ) from 0 to 9, and will set the value of "n" as the input that is given -> "cin >> n;". After that, we add the value of "n" to the sum variable.
After "i" reaches 9, it will exit the loop and proceed to printing the sum of the numbers.
Hope it helped!
Answer:
<h2>B. Playback</h2>
Explanation:
Playback is the act of reproducing recorded sound; “he was allowed to hear the playback of his testimony”. The part of a tape recorder that reproduces the recorded material.
On the audio tools contextual tab, “playback” will control how the audio file appears, if it appears, on the slide itself.
Therefore, the correct answer is b. playback.
Answer:
The location of A on the grid is (-200, 100).
Explanation:
Because A is left of the origin 200 units, the x-coordinate will be negative 200. Also, A is above the origin 100 units, so the y-coordinate will be positive 100. Therefore, the answer is C, or (-200, 100).
If you're talking about Microsoft PowerPoint, just go to the slide view, right click and click "Duplicate Slide".
I'm sure you can also Copy and Paste slides.