Rate yourself on various concepts in c++ you are familiar with.
Desenvolvedor C Senior Interview Questions
5,483 desenvolvedor c senior interview questions shared by candidates
Multithreading question regarding integer over/under flow, data races, etc…
1. solve very common c++ proboems
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();
Hard to generalize, since every technical interview was completelly different. There was request to code something online, general C++ questions (constructors, destructors, casting, ...), found problem in code excerpt, network communication questions, ...
Write a Palindrome program in C.
Knowledge about the company and the role
The asked me about my data background.
Extend your system with implementation of a simple additional requirement.
What was the most challenging project in your last job?
Viewing 5421 - 5430 interview questions