QUESTION 1: What is a 'protected' keyword used for in C# and what other keyword is very closely related to it?? Show Answer C# Mid-level
QUESTION 2: What is a difference between private and public access modifier in C#? Show Answer C# Mid-level
QUESTION 5: What is a difference between an abstract class and an interface in C#? Show Answer C# Junior
QUESTION 11: What is happening and in what order when a new object in being created C#? Show Answer C# Junior
QUESTION 14: In C# how do you call one method from another method where both method are inside of the same class? Show Answer C# Junior
QUESTION 24: In C#, why can you declare a variable using code 'int x;' but you can't declare a variable using code 'var x;'? Show Answer C# Junior
QUESTION 52: What is a project in Visual Studio and what file extension does it have? Show Answer C# Junior
QUESTION 53: What is a solution in Visual Studio and what file extension does it have? Show Answer C# Junior
QUESTION 55: Where does the .NET C# program start its flow when you build and run a console application? Show Answer C# Junior
QUESTION 58: What are the advantages of using 'using' keyword in C# and why would you use it? Show Answer C# Junior
QUESTION 61: What is covariance and contravariance? Show Answer .NETASP.NET MVCASP.NET WebAPIASP.NET WebFormsC# Senior
QUESTION 62: Have you ever consumed some 3rd party API? What was it? Have you ever designed your own API? Could you describe it a bit? Show Answer .NETArchitectureASP.NET WebAPIC#Web services Mid-level
QUESTION 63: What is serialization/deserialization? What types of serialization do you know? Show Answer .NETC# Mid-level
QUESTION 64: What is a MultiCastDelegate? What is it good for? Give some real use case Show Answer .NETC# Senior
QUESTION 65: Can you use multiple catch blocks in try/catch? What would be a use case for such thing? Show Answer C# Junior
QUESTION 69: Write a code that takes an integer number and outputs its digits to the console. Show Answer .NETC#Code challenge Mid-level
QUESTION 71: What will be the output of the following code that is using delegates? Show Answer .NETC#Code challenge Senior
QUESTION 72: Could you describe what generic type inference is and what will be the output of this program? Show Answer .NETC#Code challenge Senior
QUESTION 73: What is the difference between IEnumerable and IQueryable? Show Answer .NETC#Entity FrameworkLINQPerformance Senior
QUESTION 75: Do you use generics? What are they good for? And what are constraints and why to use them? Show Answer .NETC#Performance Mid-level
QUESTION 76: Could you explain what the following LINQ methods OrderBy, Where and Single do and what will be the output of the code? Show Answer .NETC#LINQ Junior
QUESTION 77: Could you explain on the following example what a deferred execution is and what materialization is? What will the output be? Show Answer .NETC#LINQPerformance Mid-level
QUESTION 79: How does the .Max(...) work in LINQ? What will be the result of the following code? Show Answer .NETC#LINQ Junior
QUESTION 80: What is a difference between partial class and partial method and what are they good for? Show Answer .NETC# Senior
QUESTION 81: What is a data type of the following variable? var number = 1.0; Show Answer .NETC# Senior