What are Virtual functions and friend functions.
Developer C Interview Questions
5,475 developer c interview questions shared by candidates
Valuing a bond.
Implement the Singleton design pattern.
Explain a time when you were able to tie strategic initiatives to business value.
1. About project we worked on earlier 2.oops concept 3. .net core questions 4.sql basics
write a recursive function for fibonacci in C++
Difference between class and structure
Siemens: 1) Inheritance using private, protected, public for child class what is the scope for all. 2) can private parent class be accessible by child class. Yes/No. If yes then how. If no then why? 3) c program on double linked list to find minimum of all list using double pointer. 4) pointer to pointer what is the output 5) Socket programming any idea? 6) What is context switching 7) communication protocol. 8) oops concepts
Knowledge about the company and the role
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();
Viewing 5401 - 5410 interview questions