C# Programming - Properties
Exercise : Properties - General Questions
- Properties - General Questions
1.
A property can be declared inside a class, struct, Interface.
2.
Which of the following statements is correct about properties used in C#.NET?
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?
4.
If a class Student has an indexer, then which of the following is the correct way to declare this indexer to make the C#.NET code snippet given below work successfully?
Student s = new Student();
s[1, 2] = 35;
5.
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.
Quick links
Quantitative Aptitude
Verbal (English)
Reasoning
Programming
Interview
Placement Papers