What are the Oops piller. C++ with Database connectivity, constant pointer,grep command, exception handling. Singleton class
C Programmer Interview Questions
3,500 c programmer interview questions shared by candidates
write a recursive function for fibonacci in C++
What is virtual function? what is protected Inheritance?
Rate yourself on various concepts in c++ you are familiar with.
inheritance
What is the difference between struct and union keywords in C ?
Program 1: they asked me write down code for copy constructor and copy assignment using dynamic allocation. - every bit of the concept Program 2: Polymorphism in detail , virtual function n all Program 3: explicit keyword Question 1: difference between vector and list Question 2: virtual destructor, initializer list, separate out 0,1 from array [0, 1, 0, 1 0, 1, 1, 0, 1, 0] , To clear tieto round one needs to be very clear with the basic concept
I had to complete an online challenge on C++ coding. The test involved multiple bullet point question plus 2/3 coding exercises to be completed within a time limit.
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();
Viewing 3481 - 3490 interview questions