What's your opinion on TDD
Senior Software C Developer Interview Questions
373 senior software c developer interview questions shared by candidates
Convert color from RGBA to BGRA in C
int main() { std::thread* threadHello = new std::thread(printHello); std::thread* threadThread = new std::thread(printThread); return 0; } void printHello() { std::cout << "Hello" << std::endl; } void printThread() { std::cout << "Thread" << std::endl; }
What are the strict guarantees of the method contract w.r.t. the object state?
Fix a bug from MariaDB opensource code by installing it on your machine, setting up development env, understand the code and fix the bug. That too for a interview test only.
The first round : copy constructor, delete keyword, memory management(smart pointers, RAII), static keyword for member functions and variable, singleton, code review, checking performance and finding bottlenecks (perf, gprof, intel Vtune), sort (stable and not stable),
1- Deep discussion on current project. Also small discussion on past projects. 2- Which debugging tools are used. 3 - Write a program to implement Binary Search 4- write a program to show string class implementation ( own string class with all the thing inside so that we can do operations on string using char array pointer) 5- copy constructor defination for string copy.
What do you think makes a good leader?
Describe algún patrón de diseño que utilizarías para desarrollar un videojuego.
1.Abstract classes/Interfaces with examples 2.Dynamic Polimorphism/overloading with details. 3.Stack working in .Net Framework 4.Multithreading with practical approach. 5.CLR in details 6.Linq and Lambda Expressions 7.Restful and SOAP services
Viewing 281 - 290 interview questions