.Net Programming

Explore the .Net with the latest in C# from basic to advanced, including .Net versions 9, 8, 6, 5, Core 3.1, .Net Framework, ASP.NET Core, MVC, design patterns, OOPS, and SOLID principles. Get top tutorials, best practices, and hands-on code examples on GitHub.

How a Tough JP Morgan Interview Forced Me to Master Design Patterns

I thought I knew C# until a tough JP Morgan interview exposed my gaps in design patterns. Discover how I turned failure into mastery with real-world examples and expert insights

Sukhpinder Singh | C# .Net
.Net Programming
Published in
4 min readMar 13, 2025

--

Created by Author using Canva

It was one of those days where the stakes felt unusually high. The email had come in two weeks earlier: an invitation to interview for a senior software engineering position at JP Morgan.

The company name alone carried weight, an unspoken expectation of excellence. I had years of experience in C#, a deep understanding of backend development, and had built scalable systems, but something about this opportunity made me feel an undercurrent of unease.

The first round was smooth. It was an HR discussion followed by a technical screening. The usual questions: experience with C#, system design, handling high-volume transactions, and a few algorithm-based problems. I was confident. But it was the final round — the panel interview — that changed everything.

Three interviewers

One lead architect, a senior engineer, and a hiring manager. The setting was direct and professional and had the intensity that hinted at a rigorous session ahead. After a brief introduction, the architect took the lead.

Can you walk us through how you design a loosely coupled system?” he asked.

I smiled. This was familiar territory. I discussed dependency injection, inversion of control, how to reduce coupling using interfaces, and how factories can be leveraged for object creation. I even threw in a real-world example from one of my past projects.

He nodded, seemingly satisfied. But then he followed up with something that made my stomach drop.

Great. Now, can you refactor this piece of code using appropriate design patterns?

He pasted a block of C# code in the shared document:

public class PaymentProcessor {
public void ProcessPayment(string type) {
if (type == "CreditCard") {
Console.WriteLine("Processing credit card payment");
} else if (type ==…

--

--

.Net Programming
.Net Programming

Published in .Net Programming

Explore the .Net with the latest in C# from basic to advanced, including .Net versions 9, 8, 6, 5, Core 3.1, .Net Framework, ASP.NET Core, MVC, design patterns, OOPS, and SOLID principles. Get top tutorials, best practices, and hands-on code examples on GitHub.

Sukhpinder Singh | C# .Net
Sukhpinder Singh | C# .Net

Written by Sukhpinder Singh | C# .Net

.Net developer 👨‍💻 who's 100% convinced my bugs are funnier than yours. 🐛💥 #BugLife Pubs: https://medium.com/c-sharp-programming

Responses (5)