A. The outer loop must run fewer times than the inner loop. आउटर लूप को इनर लूप की तुलना में कम बार रन करना चाहिए।
B. Only for loops can be nested. केवल लूप के लिए नेस्ट किया जा सकता है।
C. Both for and while loops can be nested. for और while दोनों लूप को नेस्ट किया जा सकता है।
D. The inner loop runs only once for each iteration of the outer loop. इनर लूप आउटर लूप के प्रत्येक इट्रेशन के लिए केवल एक बार रन करता है।
Correct Answer is :
C. Both for and while loops can be nested.