In C++, an abstract class can have a mix of abstract as well as _______ methods. 

  • concrete 
  • private 
  • static 
  • virtual
An abstract class in C++ can have both abstract methods (methods without any definition) and concrete methods (methods with a definition). This allows for a mix of defined and undefined behaviors in subclasses.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *