Question: Visual programming (choose the correct answer) 39 Given the following C# code. The instance string variable name can be: 1 class Account { private string
Visual programming (choose the correct answer)

39 Given the following C# code. The instance string variable name can be: 1 class Account { private string name; // instance variable // method that sets the account name in the object public void SetName(string account Name) { account Name - account Name: } // method that retrieves the account name from the object public string GetName() { return name; // returns name's value to this method's caller } O Can not be accessed directly or indirectly. It can be changed using the method GetName O None of the choices is correct Accessed directly from an external class. 40 By convention, a property's identifier is the capitalized identifier of the instance variable that it manipulates 1 O True False
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
