a) True
b) false
Answer: a
Explanation: In order for method overriding, method with same signature in both superclass and subclass is required with same signature. That satisfies both concepts inheritance and polymorphism.
Related Posts
What will be the output of the following Python code snippet?
print(‘Hello World’.istitle())What will be the output of the following Python code snippet?
print(‘HelloWorld’.istitle())What will be the output of the following Python code snippet?
print(‘\t’.isspace())What will be the output of the following Python code snippet?
print(”””.isspace())What will be the output of the following Python code snippet?
print(‘1@ a’.isprintable())What will be the output of the following Python code snippet?
print(‘1.1’.isnumeric())What will be the output of the following Python code snippet?
print(’11’.isnumeric())
Join The Discussion