• C++ Programming for Financial Engineering
    Highly recommended by thousands of MFE students. Covers essential C++ topics with applications to financial engineering. Learn more Join!
    Python for Finance with Intro to Data Science
    Gain practical understanding of Python to read, understand, and write professional Python code for your first day on the job. Learn more Join!
    An Intuition-Based Options Primer for FE
    Ideal for entry level positions interviews and graduate studies, specializing in options trading arbitrage and options valuation models. Learn more Join!

Enough Quant Jobs for MFE grads????

Okay thanks, Daniel. Is Eckel's book a good place to start?
 
My first C++ book was Duffy's C++ for Financial Engineers and I had no experience with a compiled language, just R and MATLAB. If I had a question about something I just googled it or went on youtube. I also took a course on Object Oriented Scientific Programming in C++.
 
Is it more beneficial to learn Java before C++, or just start on C++?

No. Java and C# shield you from things like pointers (by using them under the hood while you only use references), and take care of things like dynamic memory management. But you want to learn to do these things before you let a language do it for you. However, a case can be made for starting with C.
 
Back
Top