Multiple choice What is the use of Super keyword in Java? Used for inheritance Allows child class to call parameterized constructor of the class Used for making a function inline Used for making class or function template Allows parent class to call parameterized constructor of child class Reveal answer Fill a bubble to check yourself B Correct answer Explanation In constructor calling, default constructor of parent class gets automatically called. Super keyword allows child class to call parameterized constructor of the parent class.