Question and Answer File for sample 1. How many member methods are in the Hello class? Answer: Two, the constructor (Hello::Hello()) and destructor (Hello::~Hello()). 2. Where are these member methods used? Answer: The constructor is called implicitly when an instance of the class is created on line 21. The destructor is called implicitly when the execution leaves the scope of the instance at line 24.