Question
class student
{
int marks;
public : student()
{
cout<<”New student details can be added now”;
}
};
student s1;
a.
Cout can’t be used inside the constructor
b.
Constructor must contain only initializations
c.
This program works fine
d.
This program produces errors
Posted under Object Oriented Programming
Engage with the Community - Add Your Comment
Confused About the Answer? Ask for Details Here.
Know the Explanation? Add it Here.
Q. Which among the following is correct, based on the given code below:
Similar Questions
Discover Related MCQs
Q. Copy constructor is a constructor which ________________
View solution
Q. The copy constructor can be used to:
View solution
Q. If two classes have exactly same data members and member function and only they differ by class name. Can copy constructor be used to initialize one class object with another class object?
View solution
Q. The copy constructors can be used to ________
View solution
Q. Which returning an object, we can use ____________
View solution
Q. If programmer doesn’t define any copy constructor then _____________
View solution
Q. If a class implements some dynamic memory allocations and pointers then _____________
View solution
Q. What is the syntax of copy constructor?
View solution
Q. Object being passed to a copy constructor ___________
View solution
Q. Out of memory error is given when the object _____________ to the copy constructor.
View solution
Q. Copy constructor will be called whenever the compiler __________
View solution
Q. The deep copy is possible only with the help of __________
View solution
Q. Can a copy constructor be made private?
View solution
Q. The arguments to a copy constructor _____________
View solution
Q. Copy constructors are overloaded constructors.
View solution
Q. Which among the following best describes constructor overloading?
View solution
Q. Can constructors be overloaded in derived class?
View solution
Q. Does constructor overloading include different return types for constructors to be overloaded?
View solution
Q. Which among the following is possible way to overload constructor?
View solution
Q. Which among the following is false for a constructor?
View solution
Suggested Topics
Are you eager to expand your knowledge beyond Object Oriented Programming? We've curated a selection of related categories that you might find intriguing.
Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!