Design patterns
C Net Developer Interview Questions
260 c net developer interview questions shared by candidates
What is abstract? What's worse, hurting someone's feelings or taking advantage of someone?
Q: What is an abstract class?
Not software engineering questions. Sql questions, nothing about oop or programming questions.
Do you know what a class is? Inheritance? Are you familiar with XML?
Normal question easy to answer
Ral, posizione in azienda, offerta lavorativa, conoscenze tecniche
Connaissez-vous la difference entre Composition et Héritance?
Qu'est-ce que le principe d'héritante?
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 251 - 260 interview questions