According to Newton's third law, for every action force there is an equal (in size) and opposite (in direction) reaction force.
Answer:
B is the only answer that makes sence
Answer:
Node js
Explanation:
I would have use Python as it is more powerful and has a larger community. However, here we have to work with React Native, and hence lots of javascript will be involved. Hence, for this condition, we must go for Node Js, as its a similar technology, and suited for this kind of environment more. Python will certainly look odd out here. Hence, my preference for this condition will be Node.js.
Answer:
They are particularly use when it is use for cutting small or very precise cut. They are particularly use in joint making mostly dovetail joints
hope it helps
Answer:
Explanation:
print('Enter 10 temperatures')
sum = 0
for i in range(10):
S = float(input())
sum = sum + S
print('The sum is: ',sum)
First, we print a comment asking the ten temperatures, then we declare the variable sum = 0.
We create a for cycle where the user must enter the temperatures, 10 in this case, then we must do the operation, summing the 10 numbers.
In the last step, we print the result with the variable sum.