Answer:
a=3.53 m/s^2
Explanation:
Vo=0 m/s (because he is not moving at the start)
V1=15 m/s
t= 4.25 s
a = (V1-Vo) / t = 15/4.25 = 3.53 m/s^2
Red is refracted the least and violet is refracted the most
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:
Rate of change of area will be
Explanation:
We have given rate of change of radius
Radius of the circular plate r = 52 cm
Area is given by
So
Puting the value of r and
So rate of change of area will be
Answer:
230 N
Explanation:
At the lowest position , the velocity is maximum hence at this point, maximum support force T is given by the branch.
The swinging motion of the ape on a vertical circular path , will require
a centripetal force in upward direction . This is related to weight as follows
T - mg = m v² / R
R is radius of circular path . m is mass of the ape and velocity is 3.2 m/s
T = mg - mv² / R
T = 8.5 X 9.8 + 8.5 X 3.2² / .60 { R is length of hand of ape. }
T = 83.3 + 145.06
= 228.36
= 230 N ( approximately )