In this example, an instance of C calls a static function on A called doMore(). A.doMore() calls doSomething() which is a static function on A and an instance function on C. At runtime, C.doSomething() as actually called, which is contrary to both the...