KUNGFU TECH vietnam
6304 câu hỏi phỏng vấn Full-Stack, Coding & System Design Interview
Bộ lọc:
What is the difference between continue and break statements in C#?
What is C#?
What are Property Accessors?
What is an Object ?
What is an Abstract Class?
In how many ways you can pass parameters to a method?
What is Boxing and Unboxing?
What is LINQ in C#?
Can multiple catch blocks be executed?
What is Managed or Unmanaged Code?
What are generics in C#?
What is enum in C#?
What are partial classes?
What is the difference between a class and a structure ?
What you understand by Value types and Reference types in .NET? Provide some comparison
What are Nullable types in C#?
What is the difference between a Struct and a Class in C#?
Why to use finally block in C#?
What is Serialization?
What are dynamic type variables in C#?
What is the difference between string and StringBuilder in C#?
What are Reference Types in C#?
Can this be used within a Static method?
What are the different types of classes in C#?
What is namespace in C#?
How is Exception Handling implemented in C#?
What is sealed Class in C#?
What is the difference between ref and out keywords?
Is there a difference between throw and throw ex ?
How encapsulation is implemented in C#?
What is the difference between overloading and overriding?
What is Record in C#?
What is lambda expressions in C#?
Why can't you specify the accessibility modifier for methods inside the Interface?
What are the uses of using in C#
What is scope of a Internal member variable of a C# class?
Is there a way to catch multiple exceptions at once and without code duplication?
When to use Record vs Class vs Struct in C#?
What is the difference between Virtual method and Abstract method?
What is the difference between Interface and Abstract Class?
What is the difference between Equality Operator ( == ) and Equals() Method in C#?
How can you prevent a class from overriding in C#?
What is Extension Method in C# and how to use them?
Explain Code Compilation in C#
What is Reflection in C#.Net?
What is an anonymous function in C#?
What is difference between constant and readonly ?
What is Virtual Method in C#?
Explain Anonymous type in C#
What is the difference between dynamic type variables and object type variables?
What is a Destructor in C# and when shall I create one?
What is the use of the IDisposable interface?
Explain assignment vs shallow copy vs deep copy for a Record in C#
What is the use of Null Coalescing Operator ( ?? ) in C#?
Explain the difference between Task and Thread in .NET
What is difference between late binding and early binding in C#?
Is operator overloading supported in C#?
Can you create a function in C# which can accept varying number of arguments?
What's the difference between StackOverflowError and OutOfMemoryError ?
What is Indexer in C#?
What interface should your data structure implement to make the Where method work?
What are pointer types in C#?
What is the difference between System.ApplicationException class and System.SystemException class?
What is the difference between Func<string,string> and delegate ?
What is a static constructor?
Can you explain the difference between Interface , abstract class, sealed class, static class and partial class in C#?
What is the Constructor Chaining in C#?
What is the yield keyword used for in C#?
How to solve Circular Reference?
When would you use delegates in C#?
What is the use of conditional preprocessor directive in C#?
Explain what is Short-Circuit Evaluation in C#
Explain the difference between Select and Where
What is the difference between is and as operators in C#?
What is Marshalling and why do we need it?
What is the best practice to have best performance using Lazy objects?
IEnumerable vs List - What to Use? How do they work?
Can Multiple Inheritance implemented in C# ?
What happens when we Box or Unbox Nullable types?
What is the difference between dispose and finalize methods in C#?
What are the different ways a method can be overloaded?
Why to use lock statement in C#?
When to use ArrayList over array[] in C#?
What is scope of a Protected Internal member variable of a C# class?
Could you explain the difference between destructor , dispose and finalize method?
Could you explain the difference between Func vs. Action vs. Predicate ?
Why Abstract class can not be sealed or static?
in C#, when should we use abstract classes instead of interfaces with extension methods?
Explain what is Weak Reference in C#?
You have defined a destructor in a class that you have developed by using the C#, but the destructor never executed. Why?
What is the volatile keyword used for?
Can you add extension methods to an existing static class?
What are Circular References in C#?
What is the use of static constructors?
What are the differences between IEnumerable and IQueryable ?
Why doesn't C# allow static methods to implement an interface?
What's the difference between the System.Array.CopyTo() and System.Array.Clone() ?
Explain the difference between IQueryable , ICollection , IList & IDictionary interfaces?
Implement the Where method in C#. Explain
What is Multicast Delegate in C#?
List some different ways for equality check in .NET
What is the difference between Lambdas and Delegates?
What is a preprocessor directives in C#?
What is jagged array in C# and when to prefer jagged arrays over multi-dimensional arrays?
What is the method MemberwiseClone() doing?
What are the benefits of a Deferred Execution in LINQ?
Explain when to use Finalize vs Dispose ?
What is deep or shallow copy concept in C#?