adplus-dvertising
frame-decoration

Question

Consider a class maths and we had a property called as sum.b is a reference to a maths object and we want the code below to work.Which is the correct solution to ensure this functionality?

b.maths = 10;
Console.WriteLine(b.maths);

a.

Declare maths property with get and set accessors

b.

Declare maths property with only get accessors

c.

Declare maths property with only set accessors

d.

Declare maths property with only get, set and normal accessors

Answer: (a).Declare maths property with 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. Consider a class maths and we had a property called as sum.b is a reference to a maths object and we want the code below to work.Which is the correct solution to ensure this...

Similar Questions

Discover Related MCQs

Q. If math class had add property with get and set accessors, then which of the following statements will work correctly?

Q. If the math class had add property with get accessors then which of the following statements will work correctly?

Q. Select the correct statement about properties of read and write in C#.NET?

Q. Which among the following is NOT an exception?

Q. Which among the following is considered as .NET Exception class?

Q. Which of the following is the object oriented way to handle run time errors?

Q. Select the statements which describe the correct usage of exception handling over conventional error handling approaches?

Q. Select the correct statement about an Exception?

Q. Which of these keywords is not a part of exception handling?

Q. Which of these keywords must be used to monitor exceptions?

Q. Which of these keywords is used to manually throw an exception?

Q. Which of the following is the wrong statement about exception handling in C#.NET?

Q. When no exception is thrown at runtime then who will catch it?

Q. Choose the correct statement which makes exception handling work in C#.NET?

Q. Which of these clauses will be executed even if no exceptions are found?

Q. A single try block must be followed by which of these?

Q. Which of these exceptions handles the divide by zero error?

Q. Which of these exceptions will occur if we try to access the index of an array beyond its length?

Q. Which of the following keywords is used by the calling function to guard against the exception that is thrown by called function?

Q. Which of these classes is related to all the exceptions that are explicitly thrown?