Class, methods, oops, data structure
Developer C Interview Questions
5,483 developer c interview questions shared by candidates
You are working as part of a multidisciplinary team on a critical project at EDF, which involves developing a new energy-efficient technology. Your team includes engineers, scientists, and project managers, each with their own expertise and perspectives. In a meeting, a disagreement arises between two team members: one believes that a particular technical approach is the best solution, while the other argues for a different method based on recent research findings. Both approaches have their merits, but this disagreement is causing tension and slowing down progress. What would you do in this situation? How would you help resolve the disagreement?
You are working on a project with a diverse team of engineers and project managers. You have been asked to take part in a meeting to discuss some issues with the project and come up with a solution. How would you approach this to ensure effective communication and collaboration? How would you reach a consensus to move the project forward?
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();
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.
Valuing a bond.
Delegates, Singletons, overloading, overriding, sql joins
A medium leetcode question similar to next permutation but more like previous permutation
Describe the IDisposable pattern.
Porque queria cambiar de trabajo?
Viewing 5441 - 5450 interview questions