Answer:
A. Hertz ----f amplitude.
Explanation:
The rules of physics confirm that frequency is measured in HERTZ and the amplitude is measured in Decibel. And hence, the correct option here is certainly the first option as it states that the frequency is measured in HERTZ and the amplitude is measured in Decibel. Hence, the first one is the correct choice for this question.
Answer:
#include <iostream>
using namespace std;
int main()
{
int input = 0;
int count = 0;
int sum = 0;
int sumNegative = 0;
while (true) {
cout << "Enter a number: ";
cin >> input;
if (input == 0) break;
count++;
sum += input;
if (input < 0) {
sumNegative += input;
}
}
cout << "Count of the numbers: " << count << endl;
cout << "Sum of all the numbers: " << sum << endl;
cout << "Sum of the negative numbers: " << sumNegative << endl;
}
Explanation:
Your requirements regarding the sum and the negative numbers was a bit vague so I just did something you can probably adjust easily to your liking.
Answer:
When images or graphics excessively occupy most of the space on the page.
<u>Explanation:</u>
For example, if you observed the attached image you'll see a bad example in which the image excessively occupies most of the space on the page making the written text difficult to read.
Next, a good example of proper editing is found in the next image, which shows the written text properly aligned with the text.