Answer:
Hook's law holds good up to. A elastic limit. B. plastic limit. C.yield point. D.Breaking point
Answer:
Welding is a fabrication process whereby two or more parts are fused together by means of heat, pressure or both forming a join as the parts cool. Welding is usually used on metals and thermoplastics but can also be used on wood.
Explanation:
Answer:
sampling distribution
Explanation:
Sampling distribution is distribution of multiple samples' satistics of a population.
Answer:
Alice is correct.
The loop are dependent.
Explanation:
for(i = 1; i <= N; i = (i*2)+17 )
for(k = i+1; k <= i+N; k = k+1) // notice i in i+1 and i+N
printf("B")
This is a nested for-loop.
After the first for-loop opening, there is no block of statement to be executed rather a for-loop is called again. And the second for-loop uses the value of i from the first for-loop. The value of N is both called from outside the loop.
So, the second for-loop depend on the first for loop to get the value of i. For clarity purpose, code indentation or use of curly brace is advised.
Answer:
An oscilloscope display grid or scale is called a graticule.
Explanation: