Multithreading question regarding integer over/under flow, data races, etc…
Senior Software Engineer C Interview Questions
5,475 senior software engineer c interview questions shared by candidates
Tell us about your last project in C++.
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.
Please wait patiently. You do not have to take any action now. You will be notified 10-20 mins before your interview is scheduled.
Knowledge about the company and the role
Why you are interested in the job
Normal question easy to answer
Viewing 5441 - 5450 interview questions