C/ Sample Test,Sample questions

Question:
 
Which of the following statements are correct about the C#.NET code snippet given below?

sample c;
c = new sample();
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.

1.1,3

2.2,4

3.5,5

4.4,5

Posted Date:-2021-02-25 10:32:15


Question:
  
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.

1.1, 4

2.2, 3, 5

3.3, 4

4.2, 5

Posted Date:-2021-02-25 10:32:15


Question:
Which of the following is the correct way to create an object of the class Sample?

1. Sample s = new Sample();
2. Sample s;
3. Sample s; s = new Sample();
4. s = new Sample();

1.1,3

2.2,4

3.1,2,3

4.1,4

Posted Date:-2021-02-25 10:32:15


Question:
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.

1.1, 3

2. 2, 4

3.4,5

4.3,5

Posted Date:-2021-02-25 10:32:15


Question:
Which of the following statements are correct about the C#.NET code snippet given below?

namespace IndiabixConsoleApplication
{ 
    class Sample
    { 
        int i, j; 
        public void SetData(int ii, int jj)
        {
            this.i = ii;
            this.j = jj 
        } 
    } 
    class MyProgram
    { 
        static void Main(string[ ] args)
        { 
            Sample s1 = new Sample(); 
            s1.SetData(10, 2); 
            Sample s2 = new Sample(); 
            s2.SetData(5, 10); 
        } 
    } 
}

1.The code will not compile since we cannot explicitly use this.

2.Using this in this program is necessary to properly set the values in the object.

3.The call to SetData() is wrong since we have not explicitly passed the this reference to it.

4.The definition of SetData() is wrong since we have not explicitly collected the this reference.

Posted Date:-2021-02-25 10:32:15


Question:
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.

1. 1, 4

2.2,3,5

3.3,4

4.2,5

Posted Date:-2021-02-25 10:32:15


Question:
Which of the following statements are correct?

1. Instance members of a class can be accessed only through an object of that class.
2. A class can contain only instance data and instance member function.
3. All objects created from a class will occupy equal number of bytes in memory.
4. A class can contain Friend functions.
5. A class is a blueprint or a template according to which objects are created.

1.1, 3, 5

2.2,4

3.3,5

4.2,4,5

Posted Date:-2021-02-25 10:32:15


Question:
Which of the following statements are correct?

Data members ofa class are by default public.
Data members of a class are by default private.
Member functions of a class are by default public.
A private function of a class can access a public function within the same class.
Member function of a class are by default private.

1.1, 3, 5

2.1, 4

3.2, 4, 5

4.1, 2, 3

Posted Date:-2021-02-25 10:32:15


Question:
Which of the following statements is correct about classes and objects in C#.NET?

1. Class is a value type.

2.Since objects are typically big in size, they are created on the stack.

3.Objects of smaller size are created on the heap.

4.Objects are always nameless.

Posted Date:-2021-02-25 10:32:15


Question:
Which of the following statements is correct about the C#.NET code snippet given below?

class Sample
{
    private int i;
    public Single j;
    private void DisplayData()
    {
        Console.WriteLine(i + " " + j);
    }
    public void ShowData()
    {
        Console.WriteLine(i + " " + j);
    }
}

1.j cannot be declared as public.

2. DisplayData() cannot access j.

3.ShowData() cannot access to i.

4. There is no error in this class.

Posted Date:-2021-02-25 10:32:15


Question:
Which of the following statements is correct about the C#.NET code snippet given below?

int i;
int j = new int();
i = 10;
j = 20; 
String str; 
str = i.ToString(); 
str = j.ToString();

1.This is a perfectly workable code snippet.

2.Since int is a primitive, we cannot use new with it.

3.Since an int is a primitive, we cannot call the method ToString() using it.

4.i will get created on stack, whereas j will get created on heap.

Posted Date:-2021-02-25 10:32:15


Question:
Which of the following statements is correct about the C#.NET code snippet given below?

namespace IndiabixConsoleApplication
{ 
    class Sample
    { 
        public int index; 
        public int[] arr = new int[10]; 
        
        public void fun(int i, int val)
        { 
            arr[i] = val;
        }
    }
     
    class MyProgram
    { 
        static void Main(string[] args)
        {
            Sample s = new Sample(); 
            s.index = 20; 
            Sample.fun(1, 5); 
            s.fun(1, 5); 
        } 
    } 
}

1.s.index = 20 will report an error since index is public.

2.The call s.fun(1, 5) will work correctly.

3.Sample.fun(1, 5) will set a value 5 in arr[ 1 ].

4.The call Sample.fun(1, 5) cannot work since fun() is not a shared function.

Posted Date:-2021-02-25 10:32:15


Question:
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();

1.Contents of s1 and s2 will be exactly same.

2.The two objects will get created on the stack.

3.Contents of the two objects created will be exactly same.

4.The two objects will always be created in adjacent memory locations.

Posted Date:-2021-02-25 10:32:15


Question:
Which of the following statements is correct?

1.. Procedural Programming paradigm is different than structured programming paradigm.

2.Object Oriented Programming paradigm stresses on dividing the logic into smaller parts and writing procedures for each part.

3.Classes and objects are corner stones of structured programming paradigm.

4.Object Oriented Programming paradigm gives equal importance to data and the procedures that work on the data.

Posted Date:-2021-02-25 10:32:15


Question:
Which of the following will be the correct output for the C#.NET program given below?

namespace IndiabixConsoleApplication
{ 
    class Sample
    { 
        int i; 
        Single j; 
        public void SetData(int i, Single j)
        { 
            i = i;
            j = j;
        }
        public void Display()
        { 
            Console.WriteLine(i + " " + j);
        } 
    } 
    class MyProgram
    { 
        static void Main(string[ ] args)
        { 
            Sample s1 = new Sample();
            s1.SetData(10, 5.4f); 
            s1.Display(); 
        } 
    } 
}

1.0 0

2.10 5.4

3.10 5.400000

4.10 5

Posted Date:-2021-02-25 10:32:15


Question:
Which of the following will be the correct output for the C#.NET program given below?

namespace IndiabixConsoleApplication
{ 
    class Sample
    { 
        int i; 
        Single j; 
        public void SetData(int i, Single j)
        { 
            this.i = i; 
            this.j = j;
        }
        public void Display()
        { 
            Console.WriteLine(i + " " + j);
        } 
    } 
    class MyProgram
    { 
        static void Main(string[ ] args)
        {
            Sample s1 = new Sample(); 
            s1.SetData(36, 5.4f); 
            s1.Display(); 
        } 
    } 
}

1.0 0.0

2.36 5.4

3.36 5.400000

4.36 5

Posted Date:-2021-02-25 10:32:15


More MCQS

  1. C# MCQS -Programming (.NET Framework)
  2. C# MCQS -Programming(Control Instructions)
  3. C# MCQS - Functions and Subroutines(.NET Framework)
  4. C# Programming-Constructors
  5. C# Programming- Arrays
  6. C# Programming -Structures
  7. C# Programming-Properties
  8. C# Programming -Exception Handling
  9. C# Programming -Interfaces
  10. C# Programming -Delegates
  11. C# Programming -Generics
  12. C# Programming - Datatypes
  13. C# Programming- Operators
  14. C# Programming -Classes and Objects
  15. NET Programming mcqs
  16. Computer Science Engineering (CSE) .NET Programming
  17. C# Programming Mcq Set 1
  18. C# Programming Mcq Set 2
  19. C#.NET Programming Mcq
Search
R4R Team
R4Rin Top Tutorials are Core Java,Hibernate ,Spring,Sturts.The content on R4R.in website is done by expert team not only with the help of books but along with the strong professional knowledge in all context like coding,designing, marketing,etc!