C/ Sample Test,Sample questions

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

1. Every property must have a set accessor and a get accessor.

2.Properties cannot be overloaded.

3.Properties of a class are actually methods that work like data members.

4.A property has to be either read only or a write only.

Posted Date:-2021-02-25 10:06:08


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);

1.m.Length = 10;

2.Declare accountNo property with only get accessor.

3.Declare accountNo property with get, set and normal accessors.

4. Declare accountNo property with only set accessor.

Posted Date:-2021-02-25 10:06:08


Question:
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?

1.Declare age property with only get accessor.

2.Declare age property with only set accessor

3. Declare age property with both get and set accessors.

4.Declare age property with get, set and normal accessors.

Posted Date:-2021-02-25 10:06:08


Question:
If Sample class has a Length property with get accessor then which of the following statements will work correctly?

1.Sample m = new Sample();

2.Sample m = new Sample(); m.Length = m.Length + 20;

3.Sample m = new Sample(); int l; l = m.Length;

4.Sample.Length = 20;

Posted Date:-2021-02-25 10:06:08


Question:
If Sample class has a Length property with get and set accessors then which of the following statements will work correctly?

1. Sample.Length = 20;
2. Sample m = new Sample(); 
m.Length = 10;
3. Console.WriteLine(Sample.Length);
4. Sample m = new Sample(); 
int len;
len = m.Length;
5. Sample m = new Sample(); 
m.Length = m.Length + 20;

1.1,3

2.2,4,5

3.4 only

4.3,5

Posted Date:-2021-02-25 10:06:08


Question:
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?

1.Declare rollNo property with both get and set accessors.

2.Declare rollNo property with only set accessor.

3.Declare rollNo property with get, set and normal accessors.

4.Declare rollNo property with only get accessor.

Posted Date:-2021-02-25 10:06:08


Question:
Which of the following statements are correct?

1. The signature of an indexer consists of the number and types of its formal parameters.
2. Indexers are similar to properties except that their accessors take parameters.
3. Accessors of interface indexers use modifiers.
4. The type of an indexer and the type of its parameters must be at least as accessible as the indexer itself.
5. An interface accessor contains a body.

1.1,3,5

2.1,2,4

3.3,5

4.2,4

Posted Date:-2021-02-25 10:06:08


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

1.A property can simultaneously be read only or write only.

2.A property can be either read only or write only.

3.A write only property will have only get accessor

4.. A write only property will always return a value.

Posted Date:-2021-02-25 10:06:08


Question:
Which of the folowing does an indexer allow to index in the same way as an array?

1. A class
2. A property
3. A struct
4. A function
5. An interface

1.1, 3, 5

2.2,4

3.3,5

4.3,4,5

Posted Date:-2021-02-25 10:06:08


More MCQS

  1. C# MCQS -Programming (.NET Framework)
  2. C# MCQS -Programming(Control Instructions)
  3. C# MCQS - Functions and Subroutines(.NET Framework)
  4. C# Programming-Constructors
  5. C# Programming- Arrays
  6. C# Programming -Structures
  7. C# Programming-Properties
  8. C# Programming -Exception Handling
  9. C# Programming -Interfaces
  10. C# Programming -Delegates
  11. C# Programming -Generics
  12. C# Programming - Datatypes
  13. C# Programming- Operators
  14. C# Programming -Classes and Objects
  15. NET Programming mcqs
  16. Computer Science Engineering (CSE) .NET Programming
  17. C# Programming Mcq Set 1
  18. C# Programming Mcq Set 2
  19. C#.NET Programming Mcq
Search
R4R Team
R4Rin Top Tutorials are Core Java,Hibernate ,Spring,Sturts.The content on R4R.in website is done by expert team not only with the help of books but along with the strong professional knowledge in all context like coding,designing, marketing,etc!