Answer:
1.) Frequency F = 890.9 Hz
2.) Wavelength (λ) = 0.893 m
Explanation:
1.) Given that the wavelength = 0.385m
The speed of sound = 343 m / s
To predict the frequency, let us use the formula V = F λ
Where (λ) = wavelength = 0.385m
343 = F × 0.385
F = 343/0.385
F = 890.9 Hz
2.) Given that the frequency = 384Hz
Using the formula again
V = F λ
λ = V/F
Wavelength (λ) = 343/384
Wavelength (λ) = 0.893 m
The two questions can be solved with the use of formula
6489 for the founding product
Answer:
Image distance of apple=-6.7 cm
Magnification of apple=0.33
Explanation:
We are given that an apple is placed 20.cm in front of a diverging lens.
Object distance=u=-20 cm
Focal length=f=-10 cm
Because focal length of diverging lens is negative.
We have to find the image distance and magnification of the apple.
Lens formula

Substitute the values then we get




Image distance of apple=-6.7 cm
Magnification=m=
Magnification of apple=
Hence, the magnification of apple=0.33
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.