J.P. Morgan Interview Question

What is polymorphism?

Interview Answer

Anonymous

Oct 22, 2019

Polymorphism is one of the 4 core concepts of OOP. It allows programmers to write code based on higher level features without knowing about the low level implementation. One of the most common implementations is virtual dispatch.

1