1. | Which of the following statements is correct about classes and objects in C#.NET?
|
|||||||||
Answer: Option E Explanation: No answer description available for this question. Let us discuss.
|
2. | Which of the following statements are correct about the C#.NET code snippet given below? namespace IndiabixConsoleApplication |
|||||||||
Answer: Option E Explanation: No answer description available for this question. Let us discuss.
|
3. | Which of the following statements are correct about objects of a user-defined class called Sample? 1 All objects of Sample class will always have exactly same data. 2 Objects of Sample class may have same or different data. 3 Whether objects of Sample class will have same or different data depends upon a Project Setting made in Visual Studio.NET. 4 Conceptually, each object of Sample class will have instance data and instance member functions of the Sample class. 5 All objects of Sample class will share one copy of member functions.
|
|||||||||
Answer: Option C Explanation: No answer description available for this question. Let us discuss.
|
4. | Which of the following will be the correct output for the C#.NET program given below? namespace IndiabixConsoleApplication |
|||||||||
Answer: Option B Explanation: No answer description available for this question. Let us discuss.
|
5. | Which of the following statements are correct about the this reference? 1 this reference can be modified in the instance member function of a class. 2 Static functions of a class never receive the this reference. 3 Instance member functions of a class always receive a this reference. 4 this reference continues to exist even after control returns from an instance member function. 5 While calling an instance member function we are not required to pass the this reference explicitly. |
|||||||||
Answer: Option B Explanation: No answer description available for this question. Let us discuss.
|
6. | Which of the following statements is correct about the C#.NET code snippet given below? int i; |
|||||||||
Answer: Option A Explanation: No answer description available for this question. Let us discuss.
|
7. | Which of the following statements are correct about the C#.NET code snippet given below? sample c; 1 It will create an object called sample. 2 It will create a nameless object of the type sample. 3 It will create an object of the type sample on the stack. 4 It will create a reference c on the stack and an object of the type sample on the heap. 5 It will create an object of the type sample either on the heap or on the stack depending on the size of the object. |
|||||||||
Answer: Option B Explanation: No answer description available for this question. Let us discuss.
|
8. | Which of the following statements is correct about the C#.NET code snippet given below? namespace IndiabixConsoleApplication |
|||||||||
Answer: Option B Explanation: No answer description available for this question. Let us discuss.
|