- Online Exam Test Papers | - MCQs[multiple choice questions and answers ] | - Mock Test Papers | - Practice Papers | - Sample Test Papers |

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


More MCQS Questions and answers

Search