21.03.2025 OOP 2. 1. Let's have a classes A, B, C: class A is parental, class B inherits from A class and class C inherits from B class. 1.1. Demonstrate/Explore the ordering of calling constructors in process of instantiation of the C class. Solution/Observations: - all constructors are called given by inheritence - ordering of constructor calling is from origin parental class to children 2. Write a function that get a variable input arguments and prints a count of inputs arguments. 2.1. And print args in reverse ordering. a) class b) static