<span>B. users vote on the relevance of the source, which affects whether it will appear in future searches. </span>
It makes me a little uneasy at times, yes, but I know that they cannot find me unless I share way too much.
Hope this helps~!
~{Oh Mrs. Believer}
Force is a push or pull which is exerted on an objects. Types of Force are
Contact forces
Non contact forces or At a distance forces
Examples of Contact forces are:
Stretching of the spring of a balance
pushing of a pram
kicking of a football
Pushing the door
Hitting the ball etc are some examples of contact forces.
some types of contact forces are given in the list below:
Applied force
Normal force
Frictional force
Tension force
Air resistance force
Spring force
Answer:
<em>The programming language is not stated; However, I'll answer this question using 2 programming languages (Python and C++)</em>
<em></em>
<em>Comments are used for explanatory purpose </em>
Python program starts here
def get_my_age(): #Declare function
age = 21 #Assign value to age
print(age) #Print age
get_my_age() #Call function
#End of Program
C++ Programming Language starts here
#include<iostream>
using namespace std;
int get_my_age() //Declare Function
{
int age = 21; //Assign value to age
cout<<age; //Print age
}
int main()
{
get_my_age(); //Call Function
return 0;
}