Answer:
280 N
Explanation:
Applying Newton's third second law of motion,
F = m(v-u)/t................... Equation 1
Where F = Magnitude of the average force on the ball during contact, v = final velocity of the ball, u = initial velocity of the ball, t = time of contact of the ball and the wall.
Note: Let the direction of the initial velocity of the ball be positive
Given: m = 4 kg, u = 3.0 m/s, v = -4.0 m/s (bounce off), t = 0.1 s
Substitute into equation 1
F = 4(-4-3)/0.1
F = 4(-7)/0.1
F = -28/0.1
F = -280 N.
Note: The negative sign tells that the force on the ball act in opposite direction to the initial motion of the ball
Answer:
Rewirable or Kit – Kat Type Fuses are a type of Low Voltage (LV) Fuses. They are most commonly used in house wiring, small industries and other small current applications. Rewirable Fuses consists of two main parts: a Fuse Base, which contains the in and out terminal, and a Fuse Carrier, which holds the Fuse Element.
Answer:
No, it is not proper to use an infinitely long cylinder model when finding the temperatures near the bottom or top surfaces of a cylinder.
Explanation:
A cylinder is said to be infinitely long when is of a sufficient length. Also, when the diameter of the cylinder is relatively small compared to the length, it is called infinitely long cylinder.
Cylindrical rods can also be treated as infinitely long when dealing with heat transfers at locations far from the top or bottom surfaces. However, it not proper to treat the cylinder as being infinitely long when:
* When the diameter and length are comparable (i.e have the same measurement)
When finding the temperatures near the bottom or top of a cylinder, it is NOT PROPER TO USE AN INFINITELY LONG CYLINDER because heat transfer at those locations can be two-dimensional.
Therefore, the answer to the question is NO, since it is not proper to use an infinitely long cylinder when finding temperatures near the bottom or top of a cylinder.
Answer:
a)
, b) 
Explanation:
a) The Hooke's law states that spring force is directly proportional to change in length. That is to say:

In this case, the force is equal to the weight of the object:



The spring constant is:



b) The length of the spring is:




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.