Answer:
Examples of reciprocating motion in daily life are;
1) The needles of a sewing machine
2) Electric powered reciprocating saw blade
3) The motion of a manual tire pump
Explanation:
A reciprocating motion is a motion that consists of motion of a part in an upward and downwards
or in a backward and forward (↔) direction repetitively
Examples of reciprocating motion in daily life includes the reciprocating motion of the needles of a sewing machine and the reciprocating motion of the reciprocating saw and the motion of a manual tire pump
In a sewing machine, a crank shaft in between a wheel and the needle transforms the rotary motion of the wheel into reciprocating motion of the needle.
Answer: Pull.
Because it's all about height width and Breadth!
Answer:
The level of service of of compound grade freeway is LOSB.
Explanation:
Find the provided attachments for explanation
Answer:The awnser is 5
Explanation:Just divide all of it
Answer:
public static int average(int j, int k) {
return (int)(( (long)(i) + (long)(j) ) /2 );
}
Explanation:
The above code returns the average of two integer variables
Line 1 of the code declares a method along with 2 variables
Method declared: average of integer data type
Variables: j and k of type integer, respectively
Line 2 calculates the average of the two variables and returns the value of the average.
The first of two integers to average is j
The second of two integers to average is k
The last parameter ensures average using (j+k)/2