Type · Algorithmic

Enterprise · Software Engineer Interview Guide
Sign up to see ATSHeadquartered in United KingdomInterview language: English
How to Pass the BP Software Engineer Interview in 2026
The BP DNA (TL;DR)
The BP 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 BP interview outcomes, avoid these common traps:
- Describing a situation where the candidate ignored the risk to meet a deadline
- Using a naive O(n*m) approach without optimization.
- Not considering data ingestion challenges from diverse, potentially unreliable sources.
- Not planning for scalability and potential bottlenecks at the gateway.
Test Yourself: Real BP Questions
Three real prompts pulled from our database.
Type · System Design
Type · Past Experience
+ many more questions, signals, and worked examples
Sign up to unlock the full BP grading rubric
BP Interview Question Bank
A sample from our database, grouped by round. Sign up to see the full set.
9 of 14 questions shown
Recruiter Screen
1- 1
Type · Motivation
Why are you interested in a Software Engineer role at BP, specifically within the energy sector?
Coding Screen
3- 2
Type · Algorithmic
Given a stream of sensor readings from a wind turbine (temperature, vibration, wind speed), design an algorithm to detect anomalies that could indicate potential mechanical failure. Assume readings are timestamped and may have missing values. - 3
Type · Algorithmic
BP operates a large network of charging stations for electric vehicles. You need to efficiently find the closest available charging station for a user based on their current location and desired charging speed. Design a data structure and algorithm to support this query. - + 1 more questions in this round (sign up to unlock)
System Design
4- 4
Type · System Design
Design a system to monitor and predict the optimal maintenance schedule for BP's global fleet of LNG (Liquefied Natural Gas) tankers. The system should ingest data from various sensors, weather forecasts, and operational logs. - 5
Type · System Design
Design a real-time carbon emissions tracking system for BP's industrial operations. The system needs to aggregate data from thousands of sources (factories, vehicles, pipelines) and provide dashboards for compliance and analysis. - + 2 more questions in this round (sign up to unlock)
Onsite Coding
3- 6
Type · Algorithmic
You are given a complex dependency graph representing tasks in a refinery process. Some tasks can run in parallel, while others have strict sequential dependencies. Write code to determine a valid execution order (topological sort) and identify potential deadlocks. - 7
Type · Debugging
A microservice responsible for calculating fuel price adjustments based on market data is intermittently producing incorrect results. Analyze the provided (simplified) code and logs to identify and fix the bug. - + 1 more questions in this round (sign up to unlock)
Behavioral / Leadership
3- 8
Type · Past Experience
Tell me about a time you had to work with a complex, legacy system where documentation was scarce. How did you approach understanding and modifying it? - 9
Type · Past Experience
Describe a challenging technical problem you encountered on a project related to energy infrastructure or operations. What was your specific role, how did you approach the solution, and what was the impact? - + 1 more questions in this round (sign up to unlock)
Unlock all 14 BP 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 BP
How BP's DNA translates across functions. Pick your role.
Compare BP with similar employers
Same DNA, different bar. Browse the closest companies in our database and see how their loops differ.
Shell
Same tierShell emphasizes problem-solving, leadership potential, and collaboration, often assessed through behavioral question...
See Shell interview questions
Snam
Same tierSnam's 'Excellence' value underpins their assessment of candidates' ability to ensure the reliability and safety of c...
See Snam interview questions
SSE plc
Same tierSSE plc's commitment to delivering secure, sustainable energy underpins its hiring philosophy. Interviewers evaluate ...
See SSE plc interview questions
Practice BP interviews end-to-end
BP Mock Interview
Run a live mock interview with our AI interviewer using BP-style prompts. Get scored on structure, signal, and answer length - exactly how the real loop grades you.
Open
STAR Stories for BP Behavioral Rounds
Build a Story Bank of your past wins, mapped to the leadership signals BP interviewers grade on. Reuse them across every behavioral round.
Open
BP Interview Prep Hub
The frameworks behind every BP 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 BP interviewers nod instead of frown. Step-by-step playbooks with the moves and the pitfalls.
Open
Sample answers
What a strong answer to these BP interview questions shows.
Given a stream of sensor readings from a wind turbine (temperature, vibration, wind speed), design an algorithm to detect anomalies that could indicate potential mechanical failure. Assume readings are timestamped and may have missing values.
A strong answer shows: Ability to handle streaming data and missing values.; Understanding of time-series analysis and anomaly detection.; Consideration of performance and resource constraints..
Design an API gateway for managing access to various internal services used by BP's retail fuel station network (e.g., inventory management, pricing updates, loyalty programs). Consider security, rate limiting, and request routing.
A strong answer shows: API design principles.; Security best practices (authentication, authorization, rate limiting).; Distributed system patterns (load balancing, service discovery).; Scalability and reliability considerations..