php mcq questions with answers
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.
A.1, 3, 5B.1, 4C.2, 4, 5D.1, 2, 3E.None of these
Which of the following statements are correct about the C#.NET code snippet given below?
sample c; c = new sample();
- It will create an object called sample.
- It will create a nameless object of the type sample.
- It will create an object of the type sample on the stack.
- It will create a reference c on the stack and an object of the type sample on the heap.
- It will create an object of the type sample either on the heap or on the stack depending on the size of the object.
A.1, 3B.2, 4C.3, 5D.4, 5E.None of these
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();
A.This is a perfectly workable code snippet.B.Since int is a primitive, we cannot use new with it.C.Since an int is a primitive, we cannot call the method ToString() using it.D. i will get created on stack, whereas j will get created on heap.E.Both i and j will get created on heap.
Which of the following statements are correct about the this reference?
- this reference can be modified in the instance member function of a class.
- Static functions of a class never receive the this reference.
- Instance member functions of a class always receive a this reference.
- this reference continues to exist even after control returns from an instance member function.
- While calling an instance member function we are not required to pass the this reference explicitly.
A.1, 4B.2, 3, 5C.3, 4D.2, 5E.None of these
Which of the following statements are correct about objects of a user-defined class called Sample?
- All objects of Sample class will always have exactly same data.
- Objects of Sample class may have same or different data.
- Whether objects of Sample class will have same or different data depends upon a Project Setting made in Visual Studio.NET.
- Conceptually, each object of Sample class will have instance data and instance member functions of the Sample class.
- All objects of Sample class will share one copy of member functions.
A.1, 3B.2, 4C.4, 5D.3, 5E.None of these