'F' → Fullscreen
Keep template-console clean. Every folder you work in today must be a copy.
template-console.1-01-hello.Program.cs.Console.Write("What is your name? ");string name = Console.ReadLine();
Console.WriteLine($"Nice to meet you, {name}!");What is your name? Sam [Enter]Nice to meet you, Sam!{name} intact.Console.Write("What is your name? ");string name = Console.ReadLine();
Console.WriteLine($"Nice to meet you, {name}!");Console.WriteLine("Welcome to AP Computer Science Principles.");What is your name? Sam [Enter]Nice to meet you, Sam!Welcome to AP Computer Science Principles.template-console.1-01-about-me.Program.cs.Console.WriteLine instructions containing three true, class-appropriate statements about you.Console.WriteLine("I am in tenth grade.");Console.WriteLine("I have never written a C# program before.");Console.WriteLine("I would rather build a game than a website.");I am in tenth grade.I have never written a C# program before.I would rather build a game than a website.Console.WriteLine("I am in tenth grade.);Program.cs(1,19): error CS1010: Newline in constantNo output appears. The compiler could not finish translating the program, so the program never started.
Before moving on, confirm that:
template-console is unchanged.1-01-hello asks for a name and uses it in a greeting.1-01-about-me displays three separate lines.Answer the following questions before submitting your work.
Submit your completed activity sheet. Keep both program folders in your workspace.