Previous experiences, personal projects, experience with different technologies.
Junior Net Developer Interview Questions
228 junior net developer interview questions shared by candidates
Assume you have 4 issues that come in and are all the same urgency, how do you prioritize?
Class and struct: where are they stored? Is it in stack or heap?
Talk about a project you completed with success
Interface, what is it and whats in it. Difference between interface and abstract class.
What is SOILD, what does each letter stand for, explain.
Starting from OOP, there were unboxing, async, interfaces, linQ, basic SQL questions, garbage collector internals, safe/unsafe, dynamic, WebAPI middleware, some questions about Action Methods, basic REST, validation, MVC.
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 221 - 230 interview questions