Home / C# Programming / Properties :: Discussion

Discussion :: Properties

  1. 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?

    1.  Student[3] = 34;
    
    
    2. Student s = new Student();
       s[3] = 34;
    
    3. Student s = new Student(); 
       Console.WriteLine(s[3]);
    
    
    4. Console.WriteLine(Student[3]);
    
    5. Student.this s = new Student.this();
        s[3] = 34;
    
    

  2. A.

    1, 2

    B.

    2, 3

    C.

    3, 4

    D.

    3, 5

    View Answer

    Workspace

    Answer : Option B

    Explanation :

    No answer description available for this question.


Be The First To Comment