Answer:A piece of driftwood moves up and down as water waves pass beneath it. However, it does not move toward the shore with the waves. What does this demonstrate about the propagation of waves through a medium?
A) Waves transmit energy but not matter as they progress through a medium.
B) Waves transmit matter but not energy as they progress through a medium.
C) Waves do not transmit matter or energy as they progress through a medium.
D) Waves transmit energy as well as matter as they progress through a medium.
Explanation:
A piece of driftwood moves up and down as water waves pass beneath it. However, it does not move toward the shore with the waves. What does this demonstrate about the propagation of waves through a medium?
A) Waves transmit energy but not matter as they progress through a medium.
B) Waves transmit matter but not energy as they progress through a medium.
C) Waves do not transmit matter or energy as they progress through a medium.
D) Waves transmit energy as well as matter as they progress through a medium.
Roughly 1609 meters in one mile
Answer:
Option C
Explanation:
We have to check range of all options first
For A:
Largest Value: 5
Smallest Value: 1
So range = Largest value - smallest value
5-1 = 4
For B:
Largest Value: 6
Smallest Value: 4
Range = 6-4 = 2
For C:
Largest Value: 9
Smallest Value: 1
Range = 9-1 = 8
For D:
Largest Value = 9
Smallest Value = 3
Range = 9-3=6
So, the data set in option C has the largest range
Answer:
#include <iostream>
#include <vector>
using namespace std;
int main() {
const int NUM_GUESSES = 3;
vector<int> userGuesses(NUM_GUESSES);
int i = 0;
int uGuess = 0;
for(i = 0; i <= userGuesses.size() - 1; i++){
cin >> uGuess;
userGuesses.at(i) = uGuess;
}
cout << endl;
return 0;
}
Explanation:
First inbuilt library were imported. Then inside the main( ) function, 3 was assigned to NUM_GUESSES meaning the user is to guess 3 numbers. Next, a vector was defined with a size of NUM_GUESSES.
Then a for-loop is use to receive user guess via cin and each guess is assigned to the vector.