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? Student[3] = 34; Student s = new Student(); s[3] = 34; Student s = new Student(); Console.WriteLine(s[3]); Console.WriteLine(Student[3]); Student.this s = new Student.this(); s[3] = 34;





Write Comment

Type in
(Press Ctrl+g to toggle between English and the chosen language)

Comments

Tags
Show Similar Question And Answers
QA->There are 50 students in a class. In a class test 22 students get 25 marks each, 18 students get 30 marks each. Each of the remaining gets 16 marks. The average mark of the whole class is :....
QA->In a class of 20 students the average age is 16 years.If the age of the class teacher is added to that of students,the average age of the class becomes 17 years.What is the age of the teacher?....
QA->Which is the correct sequence in terms of descending values of Albedo?....
QA->Whichcountry’s space agency has launched a mission to retrieve a rock sample from a500m-wide asteroid called Bennu?....
QA->Indian-American billionaire who has been featured in Forbes annual list of America"s 200 Best Small Companies among "eight self-made stars who have built tidy empires in an array of industries"?....
MCQ->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? Student[3] = 34; Student s = new Student(); s[3] = 34; Student s = new Student(); Console.WriteLine(s[3]); Console.WriteLine(Student[3]); Student.this s = new Student.this(); s[3] = 34;....
MCQ->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?....
MCQ->Which of the following statements are correct about the C#.NET code snippet given below? int[] a = {11, 3, 5, 9, 4}; The array elements are created on the stack. Refernce a is created on the stack. The array elements are created on the heap. On declaring the array a new array class is created which is derived from System.Array Class. Whether the array elements are stored in the stack or heap depends upon the size of the array.....
MCQ->What will be the output of the C#.NET code snippet given below? namespace IndiabixConsoleApplication { class Sample { public static void fun1() { Console.WriteLine("Bix1 method"); } public void fun2() { fun1(); Console.WriteLine("Bix2 method"); } public void fun2(int i) { Console.WriteLine(i); fun2(); } } class MyProgram { static void Main(string[ ] args) { Sample s = new Sample(); Sample.fun1(); s.fun2(123); } } }....
MCQ-> Read the following passage and solve the questions based on it.In an. Engineering College, five students from five different cities were elected as Secretaries by the students to perform different student activities. Each student studies in a different branch of engineering. Additionally, the following information is provided:(i) Abhishek does not stay in the Aravalli hostel where the student from Nagpur stays. (ii) The student, whose name is not Abhishek and does not study in Metallurgy, stays in Satpura hostel. He is the only student among the five to stay at Satpura hostel (iii) Hardeep neither belongs to Jodhpur, nor does he study Mechanical Engineering. (iv) The student-in-charge of Cultural activity stays in the Aravalli hostel where Civil Engineering student does not stay. (v) Sanjoy and thistudent, who studies Metallurgy, both stay in the same hostel. (vi) The student who belongs to Allahabad does not stay with the student-in-charge of the Sports activity staying at Aravalli hostel. (vii) Sanjoy is not the student-in-charge of the Cultural activity. (viii) Ravi, the student-in-charge of Mess activity, stays at Satpura hostel. (ix) The student from Patna and the student, who studies Mechanical Engineering, both stay at Aravalli hostel. They are the only two among the five students to stay at this hostel. (x) The student, who stays at Satpura hostel, studies Computer Science. (xi) Hemant, who does not belong to Kochi, studies Chemical Engineering. He is not the General Secretary of the Student Body. (xii) Sanjoy does not belong to Allahabad. (xiii) The student from Kochi and the student-in-charge of Placement activity, both stay at the Vindhya hostel.Which of the following statement(s) is (are) incorrect? I. The Chemical Engineering student and the student-in-charge of Cultural activity, both stay in the same hostel. II. The student in-charge of Placement activity is studying Metallurgy. III. The student who belongs to Nagpur is the student-in-charge of Sports activity. IV. Ravi belongs to Jodhpur.....
Terms And Service:We do not guarantee the accuracy of available data ..We Provide Information On Public Data.. Please consult an expert before using this data for commercial or personal use
DMCA.com Protection Status Powered By:Omega Web Solutions
© 2002-2017 Omega Education PVT LTD...Privacy | Terms And Conditions