Type · algorithmic

How to Pass the UOB Software Engineer Interview in 2026
The UOB DNA (TL;DR)
The UOB Interview Loop
Your onsite loop will typically consist of 5 rounds.
- 1
Round 1
Recruiter ScreenMotivation, role fit, logistics. - 2
Round 2
Coding ScreenLeetCode-medium algorithmic problems under time pressure. - 3
Round 3
System DesignDistributed systems, trade-offs at scale, architecture under constraints. - 4
Round 4
Onsite CodingLeetCode-hard, debugging, code clarity, edge cases. - 5
Round 5
Behavioral / LeadershipPast evidence of ownership, influence, resolving conflict.
The Danger Zone: Top Reasons Candidates Fail
Based on our database of UOB interview outcomes, avoid these common traps:
- Blaming the other party entirely.
- Overlooking the need for a robust rule engine or machine learning component for fraud detection.
- Focusing only on the resistance without detailing their influencing strategy.
- Insufficient error handling for invalid input data or indicator calculations.
Get the full UOB playbook, free
Every round, the exact grading rubric interviewers score against, all the questions, and unlimited mock-interview practice. Free account, no credit card.
Test Yourself: Real UOB Questions
Three real prompts pulled from our database.
Type · system-design
Type · motivation
+ many more questions, signals, and worked examples
Sign up to unlock the full UOB grading rubric
UOB Interview Question Bank
A sample from our database, grouped by round. Sign up to see the full set.
9 of 16 questions shown
Recruiter Screen
1- 1
Type · motivation
Why are you interested in a software engineering role at UOB, a leading financial institution, compared to a pure tech company?
Coding Screen
3- 2
Type · algorithmic
Given a list of financial transactions, each with a timestamp and an amount, write a function to calculate the running balance at any given point in time. Handle potential out-of-order transactions. - 3
Type · algorithmic
Implement a function that takes a list of stock prices for a given day and returns the maximum profit that could have been made by buying and selling the stock once. Assume you must buy before you sell. - + 1 more questions in this round (sign up to unlock)
System Design
3- 4
Type · system-design
Design a system to detect and flag potentially fraudulent credit card transactions in real-time for a bank like UOB. Consider scalability and latency requirements. - 5
Type · system-design
Design a system to provide real-time stock quotes to a large number of retail investors. How would you handle the high volume of requests and ensure data freshness? - + 1 more questions in this round (sign up to unlock)
Onsite Coding
3- 6
Type · algorithmic
Given a stream of incoming stock trades, design a data structure that can efficiently answer queries for the volume-weighted average price (VWAP) over a specified time window. Consider memory constraints. - 7
Type · coding
Implement a function to simulate a simplified trading bot. The bot should decide whether to buy, sell, or hold based on a set of predefined technical indicators derived from historical price data. Ensure the code is clean, well-documented, and handles potential errors. - + 1 more questions in this round (sign up to unlock)
Behavioral / Leadership
6- 8
Type · conflict-resolution
Tell me about a time you had a significant disagreement with a cross-functional team member (e.g., engineer, designer, marketer) about a product decision. How did you handle it, and what was the outcome? - 9
Type · behavioral
Tell me about a time you had to work with a difficult stakeholder or team member on a project. How did you approach the situation, and what was the outcome? - + 4 more questions in this round (sign up to unlock)
Unlock all 16 UOB questions, free
No credit card. Every question with its framework, the grading signals interviewers score against, and a worked answer for each.
Interview tracks at UOB
How UOB's DNA translates across functions. Pick your role.
Compare UOB with similar employers
Same DNA, different bar. Browse the closest companies in our database and see how their loops differ.
Munich Re
Same tierMunich Re assesses analytical rigor and ability to translate complex risk into actionable strategies, valuing structu...
See Munich Re interview questions
Blackstone
Same tierBlackstone values sharp analytical skills, deep financial acumen, and a strong work ethic. They seek intellectual cur...
See Blackstone interview questions
Citi
Same tierCiti values a candidate's ability to navigate complex, global financial systems with a focus on risk management and c...
See Citi interview questions
Practice UOB interviews end-to-end
UOB Mock Interview
Run a live mock interview with our AI interviewer using UOB-style prompts. Get scored on structure, signal, and answer length - exactly how the real loop grades you.
Open
STAR Stories for UOB Behavioral Rounds
Build a Story Bank of your past wins, mapped to the leadership signals UOB interviewers grade on. Reuse them across every behavioral round.
Open
UOB Interview Prep Hub
The frameworks behind every UOB round: CIRCLES for product sense, hypothesis-driven debugging for analytical, STAR for behavioral. Learn each one in 10 minutes.
Open
Interview Frameworks
CIRCLES, STAR, AARRR, RICE, MECE. The exact frameworks that make UOB interviewers nod instead of frown. Step-by-step playbooks with the moves and the pitfalls.
Open
Sample answers
What a strong answer to these UOB interview questions shows.
Implement a function that takes a list of stock prices for a given day and returns the maximum profit that could have been made by buying and selling the stock once. Assume you must buy before you sell.
A strong answer shows: One-pass algorithm design; Tracking minimum price seen so far; Handling edge cases (e.g., empty list, single price).
Design a system to detect and flag potentially fraudulent credit card transactions in real-time for a bank like UOB. Consider scalability and latency requirements.
A strong answer shows: Real-time data processing; Scalability considerations (e.g., microservices, message queues); Trade-offs in accuracy vs. latency; Security and fraud detection strategies.