answersLogoWhite

0

a fixed loop is obviously a loop that is fixed ;D

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

Difference between fixed loop and variable loop?

Fixed loop: this is the loop where the number of iterations are known. Variable loop: Here the number of iterations are not known Example for a variable loop. The pseudocode for variable whille loop begin character cchoice display"enter the choice" accept cchoice while(cchoice='y') begin //execute the statements end end Rkarthikeyan


What are the Three types of retainers?

Loop retainer Hard cast Fixed retainer


What does a bowline knot look like and how is it tied?

A bowline knot is a loop knot that creates a secure and fixed loop at the end of a rope. It is easy to untie even after being under a load. To tie a bowline knot, you create a small loop in the rope, then pass the end of the rope through the loop, around the standing part of the rope, and back down through the loop. This creates a loop that will not slip or loosen under tension.


Difference between loop and array?

A loop usually referred to the program flow control with possible repetition of executing the same codes, an array is an abstraction of fixed size container. 2 different concepts.


What is definite loop?

Definite interations: Repeated sequence of calculations/ operations for a fixed number of repetitions. (Do or For loop) Indefinite iteration: no set limit on iterations, generally "while" loops. multiple interations is the same as multiple repetitions or trials.


What is determinate loops in vb?

repeating the number of operation a fixed number of times is called determinant loop.........


How do you tie a Beckett knot?

To tie a Beckett knot, start by creating a loop with the working end of the rope over the standing part. Bring the working end through the loop, then wrap it around the standing part and back through the loop again. Pull the working end to tighten the knot, ensuring it's secure and the loop is the desired size. This knot is useful for creating a fixed loop at the end of a rope.


When would you use a count controlled loop vs. a flag controlled loop?

Counter Loop:Counter loop is a loop which executes statement up to a fixed number of time.In GW FOR ... NEXT loop is used as counter loop.Controlled Loop:Controlled loop is used to extend the statements till a specific condition is satisfied. In GW WHILE ... WEND is used as controlled loop.


When a loop is needed at any point between ends of a ropewhat is the proper knot to tie?

When a loop is needed in the middle of a rope, the Bowline knot is often recommended due to its strength and reliability. It creates a fixed loop that does not slip or bind under load, making it ideal for various applications. Another option is the Double Bowline for added security. For more versatility, the Figure Eight Loop can also be used, providing a strong and easy-to-tie loop.


What are the release dates for Loop Loop Loop Loop - 2014?

Loop Loop Loop Loop - 2014 was released on: USA: 15 February 2014


What is the butterfly knot used for?

Simply stated, it used for creating a fixed loop in the middle of a rope or line. Tied in the bight, it can be made in the rope without access to either end. Climbers use it for shortening slings, traverse lines, and "some" anchors. it may also be known as a butterfly loop, lineman's loop, lineman's rider, or the alpine butterfly knot.


A condition-controlled loop can be used to iterate the body of the loop a specific number of times.?

A condition-controlled loop, typically implemented using constructs like while or for loops, allows for iteration based on a specified condition. While it can indeed be used to iterate a specific number of times by adjusting the loop condition accordingly, it is more commonly associated with iterating until a particular condition is met. For fixed iterations, a counter-controlled loop (like a for loop with a defined range) is often the preferred approach. Both types of loops serve essential roles in programming, depending on the desired iteration logic.