Skip to content

Goldman Sachs Placement Papers 2025 - Latest Questions & Solutions

Goldman Sachs placement papers 2025 with latest HackerRank assessment questions, DSA problems, and solutions for Engineering Analyst role.

This page contains actual Goldman Sachs placement papers from 2025 with latest HackerRank assessment questions.

RoundDurationContent
HackerRank OA90 min2 coding + 10 aptitude MCQs
Technical 160 minDSA + live coding
Technical 260 minSystem Design basics + CS
HR45 minBehavioral + finance knowledge
A game: Win $100 with 30% probability, lose $50 with 70% probability. Expected value?

Answer: 0.3 × 100 + 0.7 × (-50) = 30 - 35 = -$5

Present value of $10,000 received after 2 years at 10% discount rate?

Answer: 10000 / (1.1)² = $8,264.46

Select 3 people from 10 for a committee. How many ways?

Answer: C(10,3) = 10!/(3!×7!) = 120

A bond with face value $1000 trades at $950. Is it trading at premium or discount?

Answer: Discount (price < face value)

Difficulty: Medium
Time: 25 minutes

Find maximum sum of contiguous subarray (Kadane’s algorithm).

Input: [-2,1,-3,4,-1,2,1,-5,4]
Output: 6

Difficulty: Medium
Time: 35 minutes

Maximum profit with unlimited transactions but must wait 1 day after selling before buying again.

Input: [1,2,3,0,2]
Output: 3

Difficulty: Medium
Time: 30 minutes

Minimum coins needed to make amount.

Input: coins = [1,2,5], amount = 11
Output: 3 (5+5+1)

Difficulty: Medium
Time: 30 minutes

Can string be segmented into dictionary words?

Input: s = “leetcode”, wordDict = [“leet”,“code”]
Output: true

  1. Finance Emphasis: More questions on time value, expected value, bonds
  2. Live Coding: Interview rounds include live coding with discussion
  3. System Design: Added for experienced candidates
  4. DP Focus: Dynamic programming problems are common
  5. Clean Code: Emphasis on production-quality code

Master DSA + finance basics for Goldman Sachs!

Last updated: February 2026