if u write a class do u write Assignment operator and copy
constructor
Answer Posted / sachin
Compiler provide the assignment operator/ copy constructor
by default. The assignment operator and copy constructor do
the bit wise copy of the object. If user want to do the
member wise copy(ex:allocating the memory from the heap)
for the members, one can write his/her own assignment
operator/ copy constructor.
| Is This Answer Correct ? | 11 Yes | 0 No |
Post New Answer View All Answers
What are oops functions?
What is polymorphism used for?
Why oops is important?
What is overloading and its types?
How long to learn object oriented programming?
What is super in oop?
Describe these concepts: Polymorphism, Inheritance and Abstraction.
What are main features of oop?
Write a program to compute for numeric grades for a course. The course records are in a file that will serve as the input file. The input file is in exactly the following format: Each line contains a student's first name, then one space, then ten quiz scores all on one line. The quiz scores are in whole number and are separated by one space. Your program will take it input from this file and sends it output to a second file. The data in the output file will be exactly the same as the data in the input file except that there will be one additional number (of type double) at the end of each line. This number will be the average of the student's ten quiz scores. Use at least one function that has file streams as all or some of its arguments.
What is balance factor?
Is html an oop?
Why is polymorphism used?
What is abstraction in oop with example?
What is inheritance and how many types of inheritance?
What are the 4 pillars of oop?