KnowledgeBoat Logo
|

Robotics & Artificial Intelligence

When a code allows to use one loop inside another loop, known as ……………

  1. finite loop
  2. loop in loop
  3. nested loop
  4. infinite loop

Python Control Flow

2 Likes

Answer

nested loop

Reason — A loop written inside another loop is called a nested loop. In this type of loop, the inner loop executes completely for every iteration of the outer loop.

Answered By

1 Like


Related Questions