This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
What is the primary job of the compiler?
The compiler primarily locates spelling mistakes in your code.
The compiler primarily executes your code.
The compiler primarily converts your code into an executable format that the computer can understand.
Which of the following statements is true about C#?
C# is case insensitive.
Console is a method, and WriteLine() is a class.
Console
WriteLine()
You use double quotation marks to create a literal string.
What is wrong with this line of code? Console.WriteLine("What is wrong with me?")
Console.WriteLine("What is wrong with me?")
The L in WriteLine should be lower-case.
L
WriteLine
It's missing a semi-colon at the end
The string should use single-quotes.
You must answer all questions before checking your work.
Was this page helpful?