using System;
public class Program
{
public static void Main()
//1. The for loop would be best if already know how many times you would like to repeat a set of instructions, this is because it is simple to manipulate the variable
//on which the loop runs on.
//2. An infinite loop is a loop that would never end and repeats indefinitely, this can be demonstrated in the for loop if the iterator forces the condition to be impossible
// ex. for (int a = 0; a < 50; a--)
//3. When working with arrays, foreach is visually more appealing, as well as simpler to write comapred to for.
//4. True. When a while loop's condition is not satisfied, the loop will end.
//5.
Console.WriteLine("Hello World");
}