Explanation : We know that two forces acting on the satellite.
The speed of the satellite and the force of the gravity on the satellite then the result , the satellite moves around the earth in a circular motion.
A satellite to move tangentially to a circular path, while revolving around the circular path because the centripetal force is acting on it.
So, we can say gravity is responsible for the motion of the satellite in a circular path.
Answer:
63 m
Explanation:
Average speed of swimming = 45 m/min
Time = 1 minute 24 seconds
Converting time into minutes:
Formula:
Putting values, we get.
Thus, Alex swims for 63 m in 1 minute and 24 seconds.
Answer:
<u><em>1000 units for breakeven</em></u>
Explanation:
Let x be the number of units sold at breakeven.
The total sales at the point would be $2x.
Variable costs would be $1x and fixed costs are $1000.
Total costs are = $1x + $1000
At breakeven: Sales = Costs
Sales =m Costs
$2x = $1x + $1000
$1x = $1000
x = 1000 units.
At 1000 units the sales are equal to the costs ("breakeven").
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.
Psychology on Egenuity Oct 5th 2018 says answer is C