Answer:
Explanation:
Initial kinetic energy of M = 1/2 M vi²
let final velocity be vf
v² = u² + 2a s
vf² = vi² + 2 (F / M) x D
Kinetic energy
= 1/2 Mvf²
= 1/2 M ( vi² + 2 (F / M) x D
1/2 M vi² + FD
Ratio with initial value
1/2 M vi² + FD) / 1/2 M vi²
RK = 1 + FD / 2 M vi²
Answer:
Apparent depth = 45 cm
Explanation:
The refractive index of water in a pool, n = 4/3
Real depth, d = 60 cm
We need to find its apparent depth when viewed vertically through air. The ratio of real depth to the apparent depth is equal to the refractive index of the material. Let the apparent depth is d'. So,

So, the apparent depth is 45 cm.
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.
<span>The moon is smaller and more dense than the Earth, and has less extreme temperature changes. The statement presented is True. In terms of temperature, since there is no atmosphere on the moon, then it has less extreme temperature changes. The moon can reach 253 Fahrenheit in the day and -387 Fahrenheit at night.</span>