Question Bank
3705 approved questions from the community
In C#, a class can inherit from multiple classes.
Which of the following are recommended practices for securing an ASP.NET Core web application? (Select all that apply)
Which of the following are common caching strategies in ASP.NET Core? (Select all that apply)
Which of the following are SOLID principles? (Select all that apply)
Which of the following are ACID properties in SQL transactions? (Select all that apply)
Which of the following are advantages of using stored procedures? (Select all that apply)
Which of the following are aggregate functions in SQL? (Select all that apply)
Which of the following are valid ways to create and manage threads in .NET? (Select all that apply)
Which of the following are characteristics of interfaces in C# 8.0 and later? (Select all that apply)
Which of the following are common approaches to API versioning in ASP.NET Core? (Select all that apply)
Which of the following are strategies to optimize garbage collection in .NET? (Select all that apply)
Which of the following are access modifiers in C#? (Select all that apply)
In C#, the 'finally' block in a try-catch-finally statement executes even if no exception is thrown.
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.
Extension methods must be defined in a static class and must themselves be static methods.
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.
How are sessions typically managed in ASP.NET Core?