1. Which of the following statements is correct about the C#.NET code snippet given below? class Student s1, s2; // Here 'Student' is a user-defined class. s1 = new Student(); s2 = new Student();






Write Comment

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

Comments

Tags
Show Similar Question And Answers
QA->…………….means the annual financial statements and other statements prescribed under Rule 65 of Kerala Panchayat Raj (Accounts) Rules, 2011?....
QA->As per Co-operative societies rule ‘Net profit’ means net profit as certified by :....
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->The statements “Protoplasm is the physical basis of life” is given by which person?....
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.....
MCQ->Which of the following statements is correct about the C#.NET code snippet given below? class Student s1, s2; // Here 'Student' is a user-defined class. s1 = new Student(); s2 = new Student();....
MCQ->Which of the following statements are correct about the C#.NET code snippet given below? namespace IndiabixConsoleApplication { class index { protected int count; public index() { count = 0; } } class index1: index { public void increment() { count = count +1; } } class MyProgram { static void Main(string[] args) { index1 i = new index1(); i.increment(); } } } count should be declared as public if it is to become available in the inheritance chain. count should be declared as protected if it is to become available in the inheritance chain. While constructing an object referred to by i firstly constructor of index class will be called followed by constructor of index1 class. Constructor of index class does not get inherited in index1 class. count should be declared as Friend if it is to become available in the inheritance chain.....
MCQ->What will be the output of the C#.NET code snippet given below? namespace IndiabixConsoleApplication { class Baseclass { public void fun() { Console.Write("Base class" + " "); } } class Derived1: Baseclass { new void fun() { Console.Write("Derived1 class" + " "); } } class Derived2: Derived1 { new void fun() { Console.Write("Derived2 class" + " "); } } class Program { public static void Main(string[ ] args) { Derived2 d = new Derived2(); d.fun(); } } }....
MCQ->Which of the following statments are the correct way to call the method Issue() defined in the code snippet given below? namespace College { namespace Lib { class Book { public void Issue() { // Implementation code } } class Journal { public void Issue() { // Implementation code } } } } College.Lib.Book b = new College.Lib.Book(); b.Issue(); Book b = new Book(); b.Issue(); using College.Lib; Book b = new Book(); b.Issue(); using College; Lib.Book b = new Lib.Book(); b.Issue(); using College.Lib.Book; Book b = new Book(); b.Issue();....
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