Skip to content

Goldman Sachs Interview Experiences

Learn from real Goldman Sachs placement interview experiences shared by candidates who cleared the placement process. Goldman Sachs has a unique interview process combining technical skills with finance understanding.

  1. Online Assessment - HackerRank (120 minutes)
  • 2-3 coding problems
  • 10-15 aptitude/reasoning MCQs
  • Medium difficulty
  1. Technical Interview Round 1 (45-60 minutes)
  • DSA problems (1-2 questions)
  • Project discussion
  • CS fundamentals
  1. Technical Interview Round 2 (45-60 minutes)
  • Advanced DSA
  • System design basics
  • Finance-related puzzles
  1. HR/Behavioral Round (30-45 minutes)
  • Leadership questions
  • Why Goldman Sachs
  • Cultural fit

Interview experience 1: analyst/engineer role (2025)

Section titled “Interview experience 1: analyst/engineer role (2025)”

Interview experience 1 - engineering analyst

Candidate Profile: B.Tech CS, 8.3 CGPA, finance club member, competitive programming

Round 1 - Online Assessment (120 minutes)

Platform: HackerRank

Section 1: Coding (90 minutes, 2 problems)

Problem 1: Stock Buy and Sell (Multiple Transactions)

  • Maximize profit with unlimited transactions

  • Difficulty: Medium

  • My Approach: Valley-peak approach O(n)

  • Time: 25 minutes

    public int maxProfit(int[] prices) {
    int profit = 0;
    for (int i = 1; i < prices.length; i++) {
    if (prices[i] > prices[i-1]) {
    profit += prices[i] - prices[i-1];
    }
    }
    return profit;
    }

    Problem 2: Longest Increasing Subsequence

  • Find length of LIS

  • Difficulty: Medium

  • My Approach: Binary search O(n log n)

  • Time: 35 minutes

    Section 2: Aptitude/Reasoning (30 minutes, 15 MCQs)

  • Numerical reasoning: 5 questions

  • Logical reasoning: 5 questions

  • Data interpretation: 5 questions

  • Difficulty: Medium

  • Tips: Practice quantitative aptitude for finance roles

    Result: Cleared OA

Round 2 - Technical Interview 1 (60 minutes)

Interviewer: Vice President, Engineering Mode: Video call (Zoom)

Problem 1: Find Median from Data Stream

  • Design structure for efficient median finding

  • My Approach: Two heaps (max-heap + min-heap)

  • Live coding with explanation

  • Time: 25 minutes

    Problem 2: Rate Limiter Design

  • Implement token bucket algorithm

  • Discussion on distributed scenarios

  • Time: 20 minutes

    Project Discussion (15 minutes):

  • Discussed stock portfolio tracker project

  • Technical architecture

  • API design decisions

  • Real-time data handling

    Finance-Related Question:

  • “Explain how stock markets work”

  • “What is an option? Basic understanding”

    Tips:

  • Basic finance knowledge helps at GS

  • Know your projects deeply

  • Explain clearly while coding

Round 3 - Technical Interview 2 (60 minutes)

Interviewer: Executive Director

Problem 1: Course Schedule (Topological Sort)

  • Detect cycle in directed graph

  • My Approach: Kahn’s algorithm

  • Discussion on applications

    Problem 2: Design LRU Cache

  • O(1) get and put operations

  • Thread-safe implementation discussion

    Puzzle:

  • “You have 8 balls, one is heavier. Find it in minimum weighings”

  • Solved with 2 weighings

    System Design Discussion:

  • “How would you design a trading system?”

  • Discussed: Order matching, low latency, reliability

    CS Fundamentals:

  • Explain database ACID properties

  • What is eventual consistency?

  • TCP vs UDP for trading systems

    Result: Strong performance

Round 4 - HR/Behavioral Round (45 minutes)

Interviewer: HR Manager + Team Lead

Questions Asked:

  1. “Why Goldman Sachs?”
  • Mentioned interest in technology + finance intersection

  • GS’s engineering culture

  • Impact on global markets

    1. “Tell me about a leadership experience”
  • Led college tech club

  • Organized hackathon

  • Managed team of 15

    1. “How do you handle pressure?”
  • Example from exam week + project deadline

  • Time management approach

    1. “Where do you see yourself in 5 years?”
  • Technical leadership in financial technology

  • Building impactful systems

    1. “Do you have any ethical concerns about finance?”
  • Discussed responsible technology

  • GS’s community initiatives

    Result: Selected! Package: ₹32 LPA (base + bonus) Location: Bengaluru

Key Takeaways: Goldman Sachs values problem-solving, basic finance understanding, and clear communication. Prepare for both technical and finance-related questions.

Interview experience 2: summer analyst intern (2024)

Section titled “Interview experience 2: summer analyst intern (2024)”

Interview experience 2 - summer analyst

Candidate Profile: B.Tech CSE, 8.0 CGPA, interested in fintech

Online Assessment
  • 2 coding problems: Array manipulation, String processing
  • 15 MCQs: Aptitude focused on numerical reasoning
  • Completed in 90 minutes
  • Result: Cleared
Technical + HR Combined (60 minutes)

Technical (40 minutes):

  • Implement a simple hash map

  • Find pairs in array with given sum

  • Project discussion

    HR (20 minutes):

  • Why GS internship?

  • What do you want to learn?

  • Relocation to Bengaluru?

    Result: Selected for internship Stipend: ₹1.5 LPA (for 8 weeks) PPO: Yes, offered based on performance

Key Takeaways: Internship process is shorter. Focus on fundamentals and genuine interest in finance/technology.

  • Stock Buy/Sell variants
  • Maximum Subarray
  • Two Sum and variants
  • GCD and LCM problems
  • Prime number problems
  • Matrix operations

Technical prep

  • Practice 200+ LeetCode problems
  • Focus on medium difficulty
  • Master mathematical problems
  • Know time complexity well

Finance knowledge

  • Learn basic market concepts
  • Understand stocks and bonds
  • Know what GS does
  • Read financial news

Behavioral

  • Research GS culture
  • Prepare leadership examples
  • Show interest in finance
  • Be ethical and genuine

After technical rounds, Goldman Sachs usually closes with a short HR / hiring-manager conversation: motivation, location, notice period, and a couple of behavioural stories. Prepare those answers on the dedicated page rather than cramming them into this hub.

HR interview questions

Common Goldman Sachs HR questions, sample answer frames, and STAR tips.

JP Morgan · Morgan Stanley · Deutsche Bank · Bank of America · Capital One · Wells Fargo


Ready to crack Goldman Sachs interviews? Focus on DSA, understand basic finance, and show genuine interest in technology + finance intersection.