How inheriting a noncopyable class with a private copy constructor and an assignment operator is going to prohibit the use of copy constructor and assignment operator on the derived class? Please consider the following scenario while replying, individually,
What if, Default copy constructor and assignment operator are generated by the compiler in the derived class and not added by the programmer
What if, Copy constructor and assignment operator are defined and declared public in the derived class by the programmer
What if, Copy constructor and assignment operator are defined and declared private in the derived class by the programmer