adplus-dvertising
frame-decoration

Question

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;

a.

1, 2

b.

2, 3

c.

3, 4

d.

3, 5

Answer: (b).2, 3

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. 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...

Similar Questions

Discover Related MCQs

Q. If Sample class has a Length property with set accessor then which of the following statements will work correctly?

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

Q. Suppose a Student class has an indexed property. This property is used to set or retrieve values to/from an array of 5 integers called scores[]. We want the property to report "Invalid Index" message if the user attempts to exceed the bounds of the array. Which of the following is the correct way to implement this property?

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

Q. Which of the following is the correct way to implement a read only property Length in a Sample class?

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

Q. Which of the following is NOT a .NET Exception class?

Q. Which of the following statements is correct about an Exception?

Q. In C#.NET if we do not catch the exception thrown at runtime then which of the following will catch it?

Q. Which of the following is the Object Oriented way of handling run-time errors?

Q. Exceptions can be thrown even from a constructor, whereas error codes cannot be returned from a constructor.

Q. All code inside finally block is guaranteed to execute irrespective of whether an exception occurs in the protected block or not.

Q. Which of the following is NOT an Exception?

Q. It is compulsory for all classes whose objects can be thrown with throw statement to be derived from System.Exception class.

Q. Which of the following statements is true about an enum used in C#.NET?

Q. An enum that is declared inside a class, struct, namespace or interface is treated as public.

Q. An enum can be declared inside a class, struct, namespace or interface.

Q. Which of the following CANNOT be used as an underlying datatype for an enum in C#.NET?

Q. Which of the following statements is correct about an enum used in C#.NET?

Q. Choose the correct statement among the followings?