Answer the following statements true (T) or false (F)

1) A property encapsulates a set accessor for storing a value into a variable
and a get accessor for getting the value of a variable.
2) By convention, a property’s identifier is the lowercase identifier of the
instance variable that it manipulates—name is the property that represents instance
variable Name.
3) C# is case sensitive, so Name and name are distinct identifiers.
4)
```
Console.WriteLine($"Initial name is: {myAccount.Name}");
the expression myAccount.Name explicitly invokes the Name property's get accessor to
get the value of myAccount’s instance variable name.
```

1) T
2) F
3) T
4) F

Computer Science & Information Technology

You might also like to view...

The ________ tab displays Microsoft Office Backstage view where all of the commands related to files are found

Fill in the blank(s) with correct word

Computer Science & Information Technology

You can display data bars as a one-color solid fill or a gradient fill from left to right as the numerical value increases

Indicate whether the statement is true or false.

Computer Science & Information Technology