Answer:
147 J
Explanation:
The energy transferred to potential energy is :
U = m * g * h = (5 kg) * (9.8 m/s^2) * (3 m) = 147 J
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.
To increase the acceleration of the car using the same engine, the mass of the car must be decreased.
<h3>
What is Newton's first law of motion</h3>
Newton's first law of motion states that an object at rest or uniform motion in a straight line will continue in that path unless acted upon by an external force.
The first law is also called the law of inertia because it depends on the mass of the object. The greater the mass, the greater the inertia and more reluctant the object will be to move.
Thus, to increase the acceleration of the car using the same engine, the mass of the car must be decreased.
a = F/m
Learn more about Newton's law here: brainly.com/question/25545050
#SPJ1
Answer:
a. when the acceleration of the objects become negative
Taking into account the definition of Scientific notation, the correct representation of 5,970,000 in scientific notation is 5.97×10⁶.
<h3>Definition of scientific notation</h3>
Scientific notation is a quick way to represent a number using powers of base 10.
The numbers are written as a product:
a×10ⁿ
where:
- a is a real number greater than or equal to 1 and less than 10, to which a decimal point is added after the first digit if it is a non-integer number.
- n is a whole number, which is called an exponent or an order of magnitude. Represents the number of times the point decimal is shifted. It is always an integer, positive if it is shifted to the left, negative if it is shifted to the right.
<h3>This case</h3>
In this case, to write the number 5,970,000 in scientific notation, the following steps are performed:
- The decimal point is moved to the left as many spaces until it reaches the right of the first digit. This number will be the value of a in the previous expression. Then a = 5.97
- The base 10 is written with the exponent equal to the number of spaces that the decimal point moves. This is a positive number because the decimal point is shifted to the left, and it will have a value of n = 6.
Finally, the correct representation of 5,970,000 in scientific notation is 5.97×10⁶.
Learn more about scientific notation:
brainly.com/question/18073768
#SPJ1