Answer:
wo = 18.75 rev / s
Explanation:
This is an exercise in endowment kinematics, it indicates that the final angular velocity is w_f = 109 rad / s, the time to reach this velocity is t = 1.87 s and the deceleration a = 4.7 rad / s²
w_f = w₀ - a t
w₀ = w_f + a t
w₀ = 109 + 4.7 1.87
w₀ = 117.8 rad / s
let's reduce to revolutions / s
w₀ = 117.8 rad / s (1 rev / 2pi rad)
w₀ = 18.75 rev / s
Answer:
0.22mm
Explanation:
A far sighted person is a person suffering from long sightedness i.e such individual can only see far distant object clearly but not near distant object. The defect is corrected using convex lens.
Since convex lens is used, the focal (f) length of the lens is positive and the image distance (v) is also positive.
Using the lens formula,
1/f = 1/u + 1/v
Where u is the object distance = 0.35mm
v = 0.6mm
1/f = 1/0.35+1/0.6
1/f = 2.86 + 1.67
1/f = 4.53
f = 1/4.53
f = 0.22mm
The focal length of the contact lenses will be 0.22mm
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.
I am going to say
C. Energy contained in the nucleus of an atom