a complete loop installed in a pipeline to mitigate the effect of expansion or contraction of the line.
1 answer
Yes. The expansion loop is only there to take up the thermal expansion of the pipe run, installing a valve will not impede the action of the loop.
1 answer
To save the piping from breaking during thermal expansion (day/night, summer/winter). They provide the needed space to expand withought breaking the system.
2 answers
In a pipeline system, expansion loops, which may actually be ahorseshoe or w-shape besides a loop, provide a tolerance for the pipe when it experiences a thermal expansion or contraction.
1 answer
For thermal expansion of the pipe, avoiding damage/clash to adjoining pipes.
1 answer
Eli Whitney after he developed the steam engine to allow for the coefficient of expansion per degree of temperature changes also called an expansion loop
1 answer
Expansion tanks are not always required for water heaters, but they can help prevent pressure buildup in the system, especially in closed-loop systems. It is recommended to consult with a professional to determine if an expansion tank is necessary for your specific water heater setup.
1 answer
An expansion tank is recommended for water heaters to help regulate pressure and prevent damage to the system. It is especially important for closed-loop systems or when the water heater is connected to a backflow preventer.
1 answer
Loop Loop Loop Loop - 2014 was released on:
USA: 15 February 2014
1 answer
A nested loop is a (inner) loop that appears in the loop body of another (outer) loop. The inner or outer loop can be any type: while, do while, or for. For example, the inner loop can be a while loop while an outer loop can be a for loop.
1 answer
I believe it is:
Loop condition
Loop actions
And how the loop breaks
1 answer
Loop-the-Loop - roller coster - was created in 1901.
1 answer
There are 3 type of loop
1 is for loop
2 is loop while
3 is loop untile
1 answer
A counted loop is a loop that executes the loop's statement a pre-determined number of times. The count represent the exit condition of the loop. A loop that is not counted is an infinite loop.
2 answers
Loop the Loop - 1903 was released on:
USA: January 1903
1 answer
loop checking is perform before cable termination..the difference between a close loop and open loop is,tha close loop has a feedback while the open loop has not.
1 answer
No- the outer loop has to be longer than the inner loop.
1 answer
A loop inside a loop, which is known as a nested loop.
1 answer
A Loop is a programming language construct that instructs the processor to repeat a sequence of operations a number of times until a specific condition is reached. There are different types of loops. They are: * for loop * while loop * do while loop
2 answers
The do..while() loop tests the condition at the end of the loop. Therefore the loop body executes at least once.
The while() loop (without do) tests the condition before entering the loop and before each iteration of the loop.
The for() loop conditional expression is optional but, when specified, is tested before entering the loop and before each iteration of the loop.
1 answer
a loop consist of
data initialization;test condition;updation;
example a for loop
for(int a=1;a<5;a++)
the loop will be executed 5 times
four positives result and the last test condition will be failed and the loop will be exited
there are many loops some of them are
while loop,do...while loop,for loop,maybe more......
do while is an exit check loop and while and for are entry check loop.
1 answer
An infinite loop.
1 answer
I believe it is:
Loop condition
Loop actions
And how the loop breaks
1 answer
A DO-WHILE loop will always execute at least one iteration of the loop body. This is because the condition that controls the loop comes at the end of the loop, rather than at the beginning as per a WHILE or FOR loop.
1 answer
The cast of Loop-da-Loop and Giuseppe - 2009 includes: Jason Jaworski as Giuseppe Desiree Kaufman Noel Robichaux as Loop Da Loop
1 answer
The time complexity of using a while loop inside a for loop is O(nm), where n is the number of iterations of the for loop and m is the number of iterations of the while loop.
1 answer
When your tying your shoe you loop the loop or some kind of dance.
To 'loop the loop' in an aeronautical term. It is a maneuver creating a vertical circle in the sky and was first 'invented' by the pilot Lincoln Beachey prior to 1915
1 answer
The difference is that pre means before and post means after in Latin so it's tested before or after. :)
2 answers
loop within in a loop is called for next loop
1 answer
The string was in a loop.
In every Contract there is a loop-hole.
1 answer
"In endless loop the value of i2 k10 and the loop will terminated when value of you is greater than k and the value of k is assign to 17 after the loop and it is said to endless loop why?"
1 answer
We need a for loop because the while and do-while loops do not make use of a control variable. Although you can implement a counter inside a while or do-while loop, the use of a control variable is not as self-evident as it is in a for loop. Aside from the use of a control variable, a for loop is largely the same as a while loop. However, it is quite different to a do-while loop, which always executes at least one iteration of the loop before evaluating the conditional expression. In a for and while loop, the conditional expression is always evaluated before entering the loop, which may result in the loop not executing at all.
1 answer
A Do-While loop looks like this:
do {
loop body
} while (condition);
and a While loop looks like this:
while (condition) {
loop body
}
The main difference is that the loop body is always run once in the Do-While loop, then the condition is checked to see if the loop should keep running. In a While loop, the condition is checked first, and it will not run the loop body at all if the condition is false.
1 answer
If one loop ends before the next begins then they are not nested at all -- they are completely independent. To be nested, one loop must contain the other loop in its entirety. That is, the inner, nested loop must start and end within the outer, containing loop.
Nested loop example (in C++):
for( int x = 0; x < 10; ++x ) // outer loop
{
for( int y = 0; y < 10; ++y ) // inner loop (nested loop)
{
printf( "%d x %d = %d\r\n", x, y, x*y );
} // end of inner loop
} // end of outer loop
2 answers