C-18-Q001mediumsingle_mcq
A for loop that contains another for statement inside it is called:
A for loop that contains another for statement inside it is called:
- aIterative for loop
- bNested for loop
- cRecursive for loop
- dCompound for loop
ব্যাখ্যা
A loop that contains another loop inside its body is called a nested loop, so a for loop placed inside another for loop is a nested for loop. This structure is commonly used for working with rows and columns or multi-dimensional data.