adplus-dvertising
frame-decoration

Question

An Account class has a property called accountNo and acc is a reference to a bank object and we want the C#.NET code snippet given below to work. Which of the following options will ensure this functionality?

acc.accountNo = 10; 
Console.WriteLine(acc.accountNo);

a.

Declare accountNo property with both get and set accessors.

b.

Declare accountNo property with only get accessor.

c.

Declare accountNo property with get, set and normal accessors.

d.

Declare accountNo property with only set accessor.

Answer: (a).Declare accountNo property with both get and set accessors.

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. An Account class has a property called accountNo and acc is a reference to a bank object and we want the C#.NET code snippet given below to work. Which of the following options...

Similar Questions

Discover Related MCQs

Q. Suppose a Student class has an indexed property. This property is used to set or retrieve values to/from an array of 5 integers called scores[]. We want the property to report "Invalid Index" message if the user attempts to exceed the bounds of the array. Which of the following is the correct way to implement this property?

Q. Which of the following statements is correct about properties used in C#.NET?

Q. Which of the following is the correct way to implement a read only property Length in a Sample class?

Q. An Employee class has a property called age and emp is reference to a Employee object and we want the statement Console.WriteLine(emp.age) to fail. Which of the following options will ensure this functionality?

Q. Which of the following is NOT a .NET Exception class?

Q. Which of the following statements is correct about an Exception?

Q. In C#.NET if we do not catch the exception thrown at runtime then which of the following will catch it?

Q. Which of the following is the Object Oriented way of handling run-time errors?

Q. Exceptions can be thrown even from a constructor, whereas error codes cannot be returned from a constructor.

Q. All code inside finally block is guaranteed to execute irrespective of whether an exception occurs in the protected block or not.

Q. Which of the following is NOT an Exception?

Q. It is compulsory for all classes whose objects can be thrown with throw statement to be derived from System.Exception class.

Q. Which of the following statements is true about an enum used in C#.NET?

Q. An enum that is declared inside a class, struct, namespace or interface is treated as public.

Q. An enum can be declared inside a class, struct, namespace or interface.

Q. Which of the following CANNOT be used as an underlying datatype for an enum in C#.NET?

Q. Which of the following statements is correct about an enum used in C#.NET?

Q. Choose the correct statement among the followings?

Q. Choose the keyword which declares the indexer?

Q. Choose the operator/operators which is/are not used to access the [] operator in indexers?