curriculum/challenges/english/blocks/add-logic-to-c-sharp-console-applications/647e21598acb466c97ccbee1.md
This challenge will be partially completed on the Microsoft Learn platform. Follow these instructions to complete the challenge:
Complete the <a href="https://learn.microsoft.com/training/modules/challenge-project-develop-branching-looping-structures-c-sharp/" target="_blank" rel="noreferrer">Develop Branching and Looping Structures in C#</a> challenge project on Microsoft Learn. Then, answer the question below.
A developer needs to create an iteration statement. Under what condition is a while statement a better choice than a do statement?
When the expression values evaluated by the iteration statement are unknown prior to the iteration code block.
When the expression values evaluated by the iteration statement are known prior to the iteration code block.
When the developer creates nested do or while loops.
2