ANKO Code Academy
AI-Native Coding Learning Platform
Courses
Labs
Discussions
quiz
Control Flow - Loops Quiz
Question 1 of 8
Score: 0/8
How many times will 'Hello' be printed?
for (int i = 0; i < 5; i++) { Console.WriteLine("Hello"); }
Check Answer
Previous
Next Topic