The steps are as follows: 1. Design a class name Box. 2. Box class will have three private member variable: length, height and width. 3. Create a parameterized constructor for the Box class to initialized length, height and width. 4. Box class will have two member function: float area(), float volume(). And the functions willRead more