Question Bank
3705 approved questions from the community
Every valid JavaScript code is also valid TypeScript code because TypeScript is a superset of JavaScript.
Which of the following best describes TypeScript's relationship to JavaScript?
In SQL, what is the 'ACID' property that ensures all operations in a transaction succeed or none at all?
Which ASP.NET Core component handles HTTP requests and responses in a pipeline?
What is reflection in .NET used for?
In the async/await pattern, what happens when the 'await' keyword is encountered?
What is the primary difference between an abstract class and an interface in C#?
What is a delegate in C#?
Which type of polymorphism is achieved through method overriding in C#?
What is the primary purpose of encapsulation in object-oriented programming?
Which type of class in C# cannot be instantiated and is meant specifically to be inherited from?
In C#, the 'finally' block in a try-catch-finally statement executes even if no exception is thrown.
Which phase of Garbage Collection identifies which objects in the heap are still in use?
In C#, where are Value Types typically stored in memory?
What distinguishes managed code from unmanaged code in .NET?
What is the primary role of the Common Language Runtime (CLR)?
What is .NET?
Which data structure is most suitable for frequent insertions/deletions in the middle, but has slow (O(n)) access time?
How does the two-pointer technique find the middle of a linked list in a single pass?
What are the three pointers typically used in an iterative in-place linked list reversal?