C# - Properties Question and Answer
C# - Properties Question and Answer
2. Which of the following statements is correct about properties used in C#.NET?
- A property can simultaneously be read only or write only.
- A property can be either read only or write only.
- A write only property will have only get accessor.
- A write only property will always return a value.
3. A Student class has a property called rollNo and stu is a reference to a Student object and we want the statement stu.RollNo = 28 to fail. Which of the following options will ensure this functionality?
- Declare rollNo property with both get and set accessors.
- Declare rollNo property with only set accessor.
- Declare rollNo property with get, set and normal accessors.
- Declare rollNo property with only get accessor.
4. Which of the following statements are correct?
The signature of an indexer consists of the number and types of its formal parameters.
Indexers are similar to properties except that their accessors take parameters.
Accessors of interface indexers use modifiers.
The type of an indexer and the type of its parameters must be at least as accessible as the indexer itself.
An interface accessor contains a body.
The signature of an indexer consists of the number and types of its formal parameters.
Indexers are similar to properties except that their accessors take parameters.
Accessors of interface indexers use modifiers.
The type of an indexer and the type of its parameters must be at least as accessible as the indexer itself.
An interface accessor contains a body.
- 1, 3, 5
- 1, 2, 4
- 3, 5
- 2, 4
6. If a Student class has an indexed property which is used to store or retrieve values to/from an array of 5 integers, then which of the following are the correct ways to use this indexed
property?
Student[3] = 34;
Student s = new Student();
s[3] = 34;
Student s = new Student();
Console.WriteLine(s[3]);
Console.WriteLine(Student[3]);
Student.this s = new Student.this();
s[3] = 34;
property?
Student[3] = 34;
Student s = new Student();
s[3] = 34;
Student s = new Student();
Console.WriteLine(s[3]);
Console.WriteLine(Student[3]);
Student.this s = new Student.this();
s[3] = 34;
- 1, 2
- 2, 3
- 3, 4
- 3, 5
7. If Sample class has a Length property with set accessor then which of the following statements will work correctly?
- Sample m = new Sample(); int l; l = m.Length;
- Sample m = new Sample(); m.Length = m.Length + 20;
- Sample.Length = 20;
- Console.WriteLine (Sample.Length);
8. Which of the following statements is correct about properties used in C#.NET?
- Every property must have a set accessor and a get accessor.
- Properties cannot be overloaded.
- Properties of a class are actually methods that work like data members.
- A property has to be either read only or a write only.
9. Which of the folowing does an indexer allow to index in the same way as an array?
A class
A property
A struct
A function
An interface
A class
A property
A struct
A function
An interface
- 1, 3, 5
- 2, 4
- 3, 5
- 3, 4, 5
10. 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?
- Declare age property with only get accessor.
- Declare age property with only set accessor.
- Declare age property with both get and set accessors.
- Declare age property with get, set and normal accessors.