Question Bank
3705 approved questions from the community
What is a materialized view in SQL?
How are NULL values typically handled in SQL comparisons?
In C#, the 'new' keyword when used in a method declaration hides the inherited member instead of overriding it.
In C#, a class can inherit from multiple classes.
In C#, the 'is' keyword can be used both for type checking and pattern matching.
Records in C# are immutable by default and provide value-based equality.
What is eager loading in Entity Framework?
What is the purpose of the 'virtual' keyword in C#?
What is a namespace in C#?
Which keyword is used to define the entry point of a C# console application?
In C#, Reference Types store a reference to the actual data which is allocated on the heap.
Partial classes in C# allow the definition of a class to be split across multiple files.
The Task Parallel Library (TPL) in .NET uses the ThreadPool internally to manage tasks.
What type of class in C# can only contain static members and cannot be instantiated?
What type of class in C# cannot be inherited from?
Extension methods must be defined in a static class and must themselves be static methods.
In ASP.NET Core, Areas are used to organize related functionality into separate namespaces and folder structures within an application.
When a method returns a Task and throws an exception, where is the exception stored?
What is Dependency Injection (DI) in .NET Core?
What is the purpose of .NET Standard?