MathWorks Interview Question

Some different questions: 1. Whats cache miss and cache hit 2. How to use finalized in Java 3. Difference between Foo A; and Foo A(); 4. some easy time complexity problems (big O notation)

Interview Answer

Anonymous

May 31, 2013

Answer for 3rd: Foo A; //Instantiation of Object A of class Foo Foo A(); //function that returns an object of the class FOO

4