Answer:
absorption and insolation.
Explanation:
2500
--------=3125
0.8
This can be can be viewed as compression due to the direction of the arrows.
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.
Answer:
a) 107.1875 Hz
b) 214.375 Hz
c) 321.5625 Hz
Explanation:
L = length of the open organ pipe = 1.6 m
v = speed of sound = 343 m/s
f = fundamental frequency
fundamental frequency is given as

inserting the values


Hz
b)
first overtone is given as
f' = 2f
f' = 2 (107.1875)
f' = 214.375 Hz
c)
first overtone is given as
f'' = 3f
f'' = 3 (107.1875)
f'' = 321.5625 Hz
Explanation:
Given:
v₀ = 0 m/s
a = 2.50 m/s²
t = 4 s
Find: v
v = at + v₀
v = (2.50 m/s²) (4 s) + 0 m/s
v = 10 m/s