Programming errors such as using incorrect punctuation or misspelling words are collectively known as __________ errors.
D. syntax
Every method in C# contains a ___________.
D. header and a body
In C#, an identifier ______________.
D. can contain digits
Which of the following languages is least similar to C#?
C. machine language
Which of the following pairs is an example of a class and an object, in that order?
A. University and Yale
Which of the following is a class?
C. Console
Programs in which you create and use objects that have attributes similar to their real-world counterparts are known as _________ programs.
B. object-oriented
If a programmer inserts using static System.Console; at the top of the a C# program, which of the following can the programmer use as an alternative to System.Console.WriteLine("Hello"),?
D. WriteLine("Hello");
The text of a program you write is called ____________.
A. source code
A series of characters that appears within double quotation marks is a(n) ___________.
D. literal string
Which of the following is a method?
A. Main()
The grammar and spelling rules of a programming language constitute its ____________.
D. syntax
A comment in the form /* this is a comment */ is a(n) ______.
C. block comment
In C#, a container that groups similar classes is a(n) ____________.
D. namespace
A program that translates high-level programs into intermediate or machine code is a(n) _________________.
A. compiler
The technique of packaging an object's attributes into a cohesive unit that can be used as an undivided entity is ________.
C. encapsulation
Which of the following identifiers is not legal in C#?
A. per cent increase
The C# method that produces a line of output on the screen and then positions the cursor on the next line is __________.
B. WriteLine()
Programming languages such as C#, Java, and Visual Basic are _____________ languages.