Senior Software Engineer C Interview Questions

5,475 senior software engineer c interview questions shared by candidates

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();
avatar

Junior C# and .NET developer

Interviewed at NiCE

3.9
Jun 6, 2024

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, ...
avatar

Senior Software Engineer C++

Interviewed at Akamai

4.3
Feb 18, 2022

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, ...

Viewing 5441 - 5450 interview questions

Glassdoor has 5,475 interview questions and reports from Senior software engineer c interviews. Prepare for your interview. Get hired. Love your job.