Virtual method
C Software Interview Questions
5,472 c software interview questions shared by candidates
Solve a specific puzzle with C++.
Normal question easy to answer
Stack, heap, algorithms, arrays, microcontrollers, multithreading
On the Home assignment that i did the requested to know why i chose the design pattern i chose.
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();
Class, methods, oops, data structure
home assignment to do a tic tac toe game and then OOP questions
Write a code to find Prime Numbers, Write a code to add key and values in dictionaries, write a code to reverse words in sentence .
They asked me to design a racing game. What components I would need to create that racing game and to briefly implement some of them in pseudo code. They were specifically looking for answers regarding what would happen if your vehicle was out of bounds, how would you determine whether a racer was knocked out by another vehicle or whether it was self inflicted. An additional question they asked was how would you handle score submission and consistency between client and server side to prevent user interference in the process and to maintain data integrity.
Viewing 5461 - 5470 interview questions