LaunchCodeEducation / csharp-web-dev-curriculum

Hugo version of C# Unit 2
http://education.launchcode.org/csharp-web-dev-curriculum/
1 stars 5 forks source link

Loops Check Your Understanding ambiguous question wording #56

Open matthewcreek opened 3 months ago

matthewcreek commented 3 months ago

Relevant Link

Code given:

char[] chars = {'p', 'l', 'r', 's', 't'};

for (<loop-statement>) {
   Console.WriteLine(i);
}

Text states: "What does the missing need to be to print each item in chars?"

Ambiguous language may lead to confusion taking away from the point of the question

Suggested change: "What does <loop-statement> need to be to print each item in chars?"