Which method is called when you recast an object twice which has 3 levels deep inheritance and the method you're calling uses the `new` modifier?
Ingeniero De Software C Interview Questions
3,488 ingeniero de software c interview questions shared by candidates
By having the interface X, a class Y that implements it, and a class Z that extends the class Y + overrides one of the methods using override, and the second one using new, Tell which method will be called if ... Bunch of different combos of those things.
The greatest mistake I've ever made;
Knowledge of C++ language features and STL (mostly containers and multi-threading facilities)
What will be printed to the Console at the end of this code? int global = 0; Thread t1 = new Thread(() => { int local = 0; while(global < 3) { local += 1; global += 1; } Console.WriteLine(local); }); Thread t2 = new Thread(() => { global += 1; }); t1.Start(); t2.Start();
Implement the Singleton design pattern.
Some highly complex C++ programs that were really difficult to complete within the given time frame. HR interview was quite friendly.
What are the Oops piller. C++ with Database connectivity, constant pointer,grep command, exception handling. Singleton class
What is virtual function? what is protected Inheritance?
Rate yourself on various concepts in c++ you are familiar with.
Viewing 3461 - 3470 interview questions