The normal force is the supporting force that is exerted on an object that is in contact with another stable object.
Answer: Option C
<u>Explanation:
</u>
Normal force is forward or upward pushing force acting on an object. Mostly the normal force acts as supporting force exerted on the object by the neighbouring stable object with which the object in question is in contact. So normal force falls under the category of contact forces.
Generally, normal force will be acting to support the weight of any object placed on another object. The best examples of normal forces are the weight of the book supported by table or by the pushing force of the wall on the person leaning on the wall.
Answer: The correct answer is-15 Volts.
Explanation-
Voltage of a battery can be defined as the difference in electric potential that lies between the positive and negative terminals of a battery.
It can be calculated using Ohm's law, which states that the electric potential difference between two points on a circuit is equal to the product of the current that flows between the two points (I) and the total resistance that sis present between the two points. It can be mathematically depicted as-
ΔV = I • R
Putting the value of 'I' and 'R', we get-
ΔV = 5 X 3
= 15 V
Newton’s Thrid Law, which states that for every reaction there is an opposite reaction.
Answer:
M1 V1 = M1 V2 + M2 V3 conservation of momentum
V2 = (M1 V1 - M2 V3) / M1 where V2 = speed of M1 after impact
V2 = (3 * 9 - 1.5 * 5) / 9 = (27 - 7.5) / 9 = 2.17 m/s
Note: All speeds are in the same direction and have the same sign
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.