For the coding interview on HacherRank, I just needed to know about arrays, hash maps, and graph data structure. The interview on headquarters was mostly questions on OOP, then one coding question, a version Best Time to Buy and Sell Stock
C Engineer Interview Questions
5,483 c engineer interview questions shared by candidates
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 cant say as I signed an NDA, but its an algorithm question
Some logical and algorithmic tasks
Explain your current role and what you have done
Implement a function that comply with the following criteria: type, correctness, canonicity, and running time.
What is the difference between struct and union keywords in C ?
9 hours to implement assign method for interval_map, which meets certain criteria.
Interwal map assign function implementation.
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 5441 - 5450 interview questions