A(n) ________ member of a class may be accessed only by methods of the same class or methods of a derived class.
When you want to make sure a specific constructor from the b…
When you want to make sure a specific constructor from the base class is used, the derived class constructor must explicitly call the base class constructor using the ________.
Assume a class named BankAccount has been created and the fo…
Assume a class named BankAccount has been created and the following statement correctly creates an instance of the class. var account = new BankAccount(5000.00);What is true about the following statement?MessageBox.Show(“Account info: ” + account);
The compiler uses a method’s ________ to distinguish it from…
The compiler uses a method’s ________ to distinguish it from other methods of the same name.
In Visual Studio you can easily switch your view to another…
In Visual Studio you can easily switch your view to another form by double-clicking the form’s entry in the ________ window.
Which of the following is a class header that indicates a cl…
Which of the following is a class header that indicates a class named Amphibian is being defined and it is derived from the Animal class?
Which of the following statements is not true about extensio…
Which of the following statements is not true about extension methods?
If you want a property to be read-only to all code outside t…
If you want a property to be read-only to all code outside the class, but you want methods inside the class to be able to change the value of the property, you should ________.
When you have identified the actions that a class is respons…
When you have identified the actions that a class is responsible for doing, then you have identified the class’s ________.
Classes are ________ types.
Classes are ________ types.