Back to Interview Hub

C# Questions

C# fundamentals, LINQ, async/await, and .NET ecosystem.

Showing 1-6 of 10 questions

1 / 2
1QuestionsHard🔥 95% Asked

Dynamic programming meaning?

Asked in:StripeRazorpayGoogleAtlassian

DP solves problems with overlapping subproblems and optimal substructure by caching results using memoization or tabulation.

Page 6

Note: You might also find it helpful to discover the Invisible Notepad or explore our Developer Tools.

2QuestionsEasy🔥 32% Asked

What is C#?

Asked in:RazorpayAirbnbTwitter

C# is a strongly typed, object-oriented language on .NET used for web, desktop, games, APIs, and enterprise applications.

3QuestionsEasy🔥 33% Asked

Class vs struct?

Asked in:PaytmFlipkartLinkedIn

Class is reference type stored on heap. Struct is value type usually stored inline/stack and copied by value.

4QuestionsMedium🔥 71% Asked

async/await in C#?

Asked in:LinkedInUberPaytm

async methods return Task/Task

<

T

. await pauses method until task completes without blocking thread, useful for IO operations.

5QuestionsMedium🔥 61% Asked

IEnumerable vs IQueryable?

Asked in:CiscoAppleTCSOracle

IEnumerable works in memory. IQueryable builds expression trees and lets providers like EF Core translate queries to SQL.

6QuestionsMedium🔥 66% Asked

What is dependency injection?

Asked in:ZomatoMetaAdobe

DI provides dependencies from outside instead of creating them inside class, improving testability and loose coupling.