employer cover photo
employer logo
employer logo

Belvedere Trading

Is this your company?

Belvedere Trading Interview Question

What are the benefits of object oriented programming as compared to functional programming?

Interview Answer

Anonymous

Nov 10, 2020

Inheritance employed in OOP(Object Oriented Programming) make reusing useful or repeating code super easy. The modularity brought about by using objects allows you to troubleshoot problems easier since when things go wrong, the problem occurs in the module that failed or something that was interacting with it. Polymorphism is also a fun advantage to OOP since it allows you to essentially add features to an object without the need of changing the entire object from the ground up

2