This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Which of the following lines of code will output the text Windows 11?
Windows 11
Console.WriteLine("Windows " + 7 + 4);
Console.WriteLine($"Windows {1 + 1}");
Console.Write("Windows " + 1 + 1);
What is the value of the following result? int result = 3 + 1 * 5 / 2;
int result = 3 + 1 * 5 / 2;
10
5
6
What will be the result of the following line of code? Console.WriteLine(5 / 10);
Console.WriteLine(5 / 10);
0.5
0
1
Which of the following lines of code uses the addition assignment operator?
value += 5;
value++;
value = value + 5;
You must answer all questions before checking your work.
Was this page helpful?