Answer: weight on Jupiter = 869.75 N
mass on Earth = mass on Jupiter = 35.5 Kg
Explanation:
W = mg
W = weight
m = mass
g = gravitational acceleration [ on the Earth, g₁ = 9,8 N/kg ]
On the Earth,
G₁ = m x g₁ = 347,9 N
On the Jupiter,
G₂ = mg₂
mass on the Earth = mass on the Jupiter !
m = G₁ : g = 347.9 N : 9,8 N/kg = 35.5 kg
G2 : G1 = 2.5
G₂ = 2,5 G₁ = 2,5 x 347.9 N = 869,75 N
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:
Explanation:
A )
speed of swimming in still water is given by the expression
distance / time
= 50 / 25
= 2 m /s
In lane 1 , 1.2 cm/s current is flowing in the direction that the swimmers are going so swimmers will cover distance at the rate of 2 + 1.2 = 3.2 m /s.
time to cover distance of 50 m in lane 1
= distance / speed
= 50 / 3.2 = 15.625 s
In lane 8 , 1.2 cm/s current is flowing against the direction that the swimmers are going so swimmers will cover distance at the rate of 2 - 1.2 = .8 m /s.
time to cover distance of 50 m in lane 1
= distance / speed
= 50 / .8 = 62.5 s
Answer:
this is what popped up when I searched it up:In physics, the kinetic energy (KE) of an object is the energy that it possesses due to its motion. It is defined as the work needed to accelerate a body of a given mass from rest to its stated velocity. Having gained this energy during its acceleration, the body maintains this kinetic energy unless its speed changes.
Explanation:
Answer:
chloroplasts
Explanation:
Most plant shoots exhibit positive phototropism, and rearrange their chloroplasts in the leaves to maximize photosynthetic energy and promote growth.