Technical interview Q&A plus 100+ career & HR questions—notice period, salary negotiation, resume, LinkedIn, freelancing, AI careers, and behavioral interviews with detailed, real-world answers.
SOLID Design Principles Tutorial · CLR & types
Short answer: The CLR loads assemblies, manages memory (GC), and JIT-compiles IL to native code. Value types live on the stack or inline in objects; reference types live on the heap with GC tracking.
In an ASP.NET Core API, returning a large List<int> vs IEnumerable matters for allocation; you might stream results to reduce heap pressure.
Junior signal: Focus on clear definitions and one hands-on example—even from a course project or internship.
Practice aloud. Pair this with the full SOLID Design Principles interview library and timed practice exams on Toolliyo.
SOLID Design Principles Tutorial · ASP.NET Core
Short answer: ASP.NET Core is cross-platform, uses Kestrel, middleware pipeline, and built-in DI. Requests flow: routing → middleware → endpoints → filters → action.
A ShopNest checkout API registers authentication middleware before authorization, uses scoped DbContext, and returns ProblemDetails for errors.
Practice aloud. Pair this with the full SOLID Design Principles interview library and timed practice exams on Toolliyo.
SOLID Design Principles Tutorial · EF Core
Short answer: EF Core maps C# entities to tables, tracks changes, and translates LINQ to SQL. Migrations version schema; Include/ThenInclude load graphs.
Loading orders with items using .Include(o => o.Items) avoids N+1 when rendering an invoice list.
Senior signal: Mention scale, team trade-offs, observability, and how you would mentor a junior on this topic.
Practice aloud. Pair this with the full SOLID Design Principles interview library and timed practice exams on Toolliyo.
SOLID Design Principles Tutorial · Security
Short answer: Interviewers want a crisp definition, a practical example from your projects, and awareness of trade-offs—not textbook dumps.
Describe a feature you built, the constraint you faced, and the design choice you made.
Practice aloud. Pair this with the full SOLID Design Principles interview library and timed practice exams on Toolliyo.
SOLID Design Principles Tutorial · Testing
Short answer: Interviewers want a crisp definition, a practical example from your projects, and awareness of trade-offs—not textbook dumps.
Describe a feature you built, the constraint you faced, and the design choice you made.
Junior signal: Focus on clear definitions and one hands-on example—even from a course project or internship.
Practice aloud. Pair this with the full SOLID Design Principles interview library and timed practice exams on Toolliyo.