'F' → Fullscreen
Copy template-console in the workspace and name the copy fb-values-and-variables. Open itsProgram.cs file.
"Avery" to your first name, but keep the quotation marks.string playerName = "Avery";int score = 0;
Console.WriteLine(playerName);Console.WriteLine(score);accuracy variable and its output statement beneath your existing code.0.0 and 100.0.string playerName = "Avery";int score = 0;
Console.WriteLine(playerName);Console.WriteLine(score);
double accuracy = 82.5;Console.WriteLine(accuracy);string playerName = "Avery";int score = 0;
Console.WriteLine(playerName);Console.WriteLine(score);
double accuracy = 82.5;Console.WriteLine(accuracy);
score = score + 10;Console.WriteLine(score);
score = score + 25;Console.WriteLine(score);Make a small table on paper with two columns: statement and score after the statement. Trace each line that declares, changes, or displays score.
score = "ten"; after the score declaration.If you kept the example values, your output should match this result. A customized name or accuracy value may differ.
Avery082.51035string, int, and double.35 after both updates.Answer the following questions after checking your program.
int score = 0;.score holds 10, explain how C# evaluates score = score + 25;.int variable store 10 but not "ten"?Keep your working project. This Foundation activity has no separate submission unless your instructor asks to see it.