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; }
Senior C Software Developer Interview Questions
135 senior c software developer interview questions shared by candidates
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
OOP concepts and c++ 11 based questions
Dynamic allocation of 2D array
Q_OBJECT and MOC working and need of it?
Singleton design pattern? Smart Pointer? why we need it? internal working of Unique pointer? what is shared and weak pointer?
One question about using semaphone to achieve threads synchronization.
What are you doing in your current role? What is the time requirement? How do you achieve the time requirement? How to find out cause of an internet communication failure?
Every internal detail of C++ programming language.
1. Sort array with ones and zeros. This was the most "complicated" part. 2. Complexity of insert/delete/find in double linked list, binary tree. Complexity of sort of array of numbers, of sorted array of numbers. 3. Questions like what order ctors/dtors work. 4. Some crap with 2 classes having static shared ptr for kernel object, where kernel was class poorly written. Like what's wrong with the code was the question. 5. int x; int &j; j=x; What's wrong? Reference should be assigned to a variable when declared actually. Other questions very primitive.
Viewing 101 - 110 interview questions