Answer:
is correct
Explanation:
in my think, first this due to ray emitted from the light those ray may be affect our skin or party of body.
(a) The height of the cliff will be 8.26 meters.
(b) The time would it take to reach the ground will be 0.717 sec.
<h3>What is velocity?</h3><h3 />
The change of displacement with respect to time is defined as the velocity. Velocity is a vector quantity. it is a time-based component.
(a) The height of the cliff will be 8.26 meters.
According to Newton's second equation of motion

Hence The height of the cliff will be 8.26 meters.
(b)The time would it take to reach the ground will be 0.717 sec.
We must have the final velocity to find the time so;

According to Newton's third equation of motion ;

Hence the time would it take to reach the ground will be 0.717 sec.
To learn more about the velocity refer to the link ;
brainly.com/question/862972
Answer:
18 m
Explanation:
Given : vo = 0 m/s ; t = 3 s; a = 4 m/s^2 ; d = ? m ; average velocity = ? m/s ; fonal velocity = ? m/s
solving for the final velocity, v
v = a * t
v = 4 m/s^2 * 3 s
v = 12 m / s
Solving for the average velocity. avg v
avg v = (vo + v) / 2
avg v = (0 m / s + 12 m/s) / 2
avg v = 6 m / s
Solving for the distance traveled after 3 s
d = avg v * t
d = 6 m / s * 3 s
d = 18 meters
In the first 3s the car travels 18 meters.
Answer:
Paying for employees seminars and workshops related to their careers
Explanation:
To motivate personal development among employees, several things can be done. Among them, giving employees chance to present their own solutions to problems, exposing the employees to several global challenges and how to handle them, paying for employees seminars and workshops related to their own careers for professional development among other things.
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.