Type · System Design

Enterprise · Software Engineer Interview Guide
Sign up to see ATSHeadquartered in SpainInterview language: Spanish
How to Pass the BBVA Software Engineer Interview in 2026
The BBVA DNA (TL;DR)
The BBVA 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 BBVA interview outcomes, avoid these common traps:
- Using a suboptimal method for finding the top N elements (e.g., sorting the entire list).
- Failing to explore all root-to-leaf paths correctly.
- Creating overly large or overly granular microservices.
- Not articulating the technical details or trade-offs involved.
Test Yourself: Real BBVA Questions
Three real prompts pulled from our database.
Type · Algorithmic
Type · Debugging
+ many more questions, signals, and worked examples
Sign up to unlock the full BBVA grading rubric
BBVA Interview Question Bank
A sample from our database, grouped by round. Sign up to see the full set.
9 of 13 questions shown
Recruiter Screen
1- 1
Type · Motivation
Why are you interested in a Software Engineer role at BBVA, and what specifically about our work in financial technology excites you?
Coding Screen
3- 2
Type · Algorithmic
Given a list of financial transactions, each with a timestamp, amount, and currency, write a function to calculate the total balance for a given currency, handling potential duplicates or out-of-order entries. - 3
Type · Algorithmic
Implement a function to detect if a sequence of stock price movements (represented by a list of integers, positive for up, negative for down) contains a specific pattern, e.g., 'buy low, sell high' within a defined window. - + 1 more questions in this round (sign up to unlock)
System Design
3- 4
Type · System Design
Design a system to process real-time fraud detection for credit card transactions. Consider aspects like data ingestion, feature extraction, model serving, and alerting. - 5
Type · System Design
Design a microservice architecture for a new online banking platform. Focus on how you would handle user authentication, transaction processing, and account management. - + 1 more questions in this round (sign up to unlock)
Onsite Coding
3- 6
Type · Algorithmic
Given a binary tree representing a financial portfolio, where each node contains a value (e.g., asset value) and potentially children (sub-portfolios), write a function to find the maximum path sum from root to leaf. - 7
Type · Debugging
Here is a piece of code intended to calculate loan interest. It has a subtle bug. Find and fix it. Explain your debugging process. - + 1 more questions in this round (sign up to unlock)
Behavioral / Leadership
3- 8
Type · Behavioral
Tell me about a time you had to work with a difficult stakeholder or team member. How did you approach the situation, and what was the outcome? - 9
Type · Behavioral
Describe a complex technical problem you encountered in a previous project. Walk me through your thought process for diagnosing and solving it, and what you learned from the experience. - + 1 more questions in this round (sign up to unlock)
Unlock all 13 BBVA 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 BBVA
How BBVA's DNA translates across functions. Pick your role.
Compare BBVA with similar employers
Same DNA, different bar. Browse the closest companies in our database and see how their loops differ.
Aon
Same tierAon's client-facing roles often require candidates to articulate complex risk solutions clearly. Interviewers assess ...
See Aon interview questions
Swiss Life
Same tierSwiss Life's 'We inspire confidence' value guides their hiring, seeking candidates who demonstrate sound judgment in ...
See Swiss Life interview questions
Crédit Agricole
Same tierCrédit Agricole values candidates demonstrating strong financial fundamentals, analytical rigor, and a client-focused...
See Crédit Agricole interview questions
Practice BBVA interviews end-to-end
BBVA Mock Interview
Run a live mock interview with our AI interviewer using BBVA-style prompts. Get scored on structure, signal, and answer length - exactly how the real loop grades you.
Open
STAR Stories for BBVA Behavioral Rounds
Build a Story Bank of your past wins, mapped to the leadership signals BBVA interviewers grade on. Reuse them across every behavioral round.
Open
BBVA Interview Prep Hub
The frameworks behind every BBVA 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 BBVA interviewers nod instead of frown. Step-by-step playbooks with the moves and the pitfalls.
Open
Sample answers
What a strong answer to these BBVA interview questions shows.
Design a system to process real-time fraud detection for credit card transactions. Consider aspects like data ingestion, feature extraction, model serving, and alerting.
A strong answer shows: Understanding of distributed systems and stream processing.; Consideration of latency, throughput, and fault tolerance.; Awareness of ML model lifecycle in production..
Given a set of customer accounts, each with a unique ID and a list of associated credit/debit operations, design an algorithm to find the N customers with the highest net worth, considering only operations within the last quarter.
A strong answer shows: Efficient data filtering.; Correct net worth calculation.; Use of appropriate data structures for top-N problems (e.g., heaps)..