CH4 part1 CSharp
False
A constructor is used to instantiate a class from an object.
False
A property looks like a methodbecause it directly represents a storage location.
class
C# is an object-oriented language. All the code for an application must be placed in a(n) ____.
Value = 12,346
Console.WriteLine("Value = {0:N0}", 12345.9032); What will be displayed from the above line?
True
Constructors are methods.
use the keyword override in the heading
In order to provide a new definition for the ToString( ) method, ____.
private
Normally data members are defined to have ____ access.
True
Since the data members of the class are defined as private, their public property counterpart must be used to assign new values to the data members.
True
Three of the contextual keywords associated with properties are get, set, and value.
objects
To program an object-oriented solution begin by determining what ____ are needed in the solution.
False
Use a type prefix, such as C for class name. For example, a student class should be named CStudent.
False
When you define a class method, you define its characteristics or fields in terms of the data.
False
When you define a property, you can define the set without the get, but you must define a get.
all of the above
When you define the class, you describe its ____ in terms of data and its behaviors, or methods, in terms of what kinds of things it can do.
The default constructor must be the first one written for the class.
Which of the following is NOT a true statement relating to constructors?
They are called instance methods.
Which of the following is true regarding methods of a class