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();
Net Developer Interview Questions
8,160 net developer interview questions shared by candidates
Questions on projects, python , sql
Parallel programming and synchronization primitives
const vs readonly
find an error with a method with array loop and lambda
Q1. What is Abstraction? Q2. What is Data Hiding? Q3. How to implement Abstract Class? Q4. Implement Exceptional Handling in React? Q5. Find Digit Frequencies (Easy)
Oops, DI, Delegates, Extension Methods, Middleware, Generics, LINQ, SQL basic questions
1) What is Encapsulation and Polymorphism 2) Difference between Abstraction and Interface 3) Difference between IQueryable and IEnumerable 4) Explain Extension Methods, Anonymous method, Middleware 5) Write a C# program for reversing of the Whole String. 6) Write a C# program to print index of Array from given Array Of Numbers [2, 7, 11, 15] whose Sum is 9.
Describe how you would bring third parties with you to deliver the company's objectives when they are potentially resistant to change?
how to you write unit test for your current project ?
Viewing 8131 - 8140 interview questions