Back to Goldman Sachs guide

Goldman Sachs · Psychometric Tests

Goldman Sachs Psychometric Tests Prep

Goldman Sachs sifts candidates through SHL Verify G+ Suite (business tracks) and HackerRank (engineering tracks) before any interview. Below: the exact format, what each section tests, and how to practise it in identical conditions until you walk in confident.

Goldman Sachs Pack

£69one-time

One-time payment. Yours for the whole application season.

  • Firm-specific HireVue question bank
  • Psychometric tests in the real formats
  • Live AI mock interviews, scored
  • CV reviews and cover letters
  • Full process map and intelligence brief
  • Vyo AI coaching
Get the Goldman Sachs Pack
7-day money-back guarantee
Every interview stage covered, end to end

Applying to several firms? The Season Pass is a yearly subscription covering every firm, £139 a year, cancel anytime.

The format

What Goldman Sachs's psychometric test actually looks like

Fires automatically within 0-7 days of clearing the online application. Sits before the HireVue video interview in the funnel.

Timed sections

Most psychometric tests split into 3-5 sections, each with its own clock. Speed and accuracy both count.

Adaptive difficulty

Modern formats get harder if you answer correctly, easier if you struggle. Your final score reflects what you can actually do under time pressure.

Pass mark

Goldman Sachs sets a pass mark per test type. Below it, you don't progress regardless of how strong the rest of your application is.

Completion window. Strict 7-day completion window from the timestamp of the invitation email. High-performing candidates complete within 48-72 hours of receipt to stay competitive in the rolling pipeline.

By division. Standard business and revenue tracks (IB, Markets, AWM, Operations, Controllers, Compliance) sit the SHL Verify G+ suite combined with the OPQ32 personality questionnaire. Engineering and Strats candidates skip SHL entirely and complete a 90-120 minute HackerRank assessment.

Recent changes. Goldman moved away from gamified neuroscience platforms and back to objective cognitive testing, expanding reliance on SHL Verify and custom mathematical aptitude modules. The OPQ32 now includes consistency checks that flag gamed answer patterns.

The provider

What Goldman Sachs actually buys

Goldman Sachs configures its own selection of SHL Verify G+ Suite (business tracks) and HackerRank (engineering tracks) modules. Below: the exact products in the suite, why they were chosen, and what the provider's reputation is across the candidate pool.

Modules in the suite

  • SHL Verify G+ Numerical Reasoning (standard or adaptive)
  • SHL Verify G+ Verbal Reasoning (True / False / Cannot Say)
  • SHL Verify G+ Inductive Reasoning (matrix and sequence)
  • SHL Occupational Personality Questionnaire (OPQ32 r-model)
  • HackerRank Core Technical Slate (engineering candidates)

History at Goldman Sachs. Goldman has used SHL as its primary aptitude vendor for over a decade, adapting its setup as SHL evolved from old standalone tests into the integrated Verify G+ ecosystem.

Candidate reputation. SHL is structurally predictable but highly demanding under time pressure. The questions themselves are generally straightforward, time constraints make completion at full accuracy very difficult.

Section breakdown

What each part of the Goldman Sachs assessment tests

Each section has its own format, timer and trap pattern. Worked examples below show exactly what you will see and where candidates drop points.

Numerical Reasoning

18 questions · 20 minutes (~66 seconds per question)

What it tests. Quickly identifying, isolating and manipulating numerical data to make business decisions. Mental maths agility, chart interpretation, currency translation, multi-stage ratio calculations.

Worked example. A regional performance table shows EMEA revenue of 620M euros and operating costs of 440M euros, with the exchange rate 1 euro = 0.85 GBP. The question asks for total operating profit in pounds: 620 minus 440 equals 180M euros, multiplied by 0.85 equals 153M pounds.

Common traps. Distraction trap: tables present 5-6 columns of detail but the question stem only needs two data points. Unit scale traps: missing "in thousands" or "in millions" labels causes orders-of-magnitude errors in multiple choice.

How to handle it. Read the question stem before looking at the table or chart. Identify the data points you need so you can ignore the irrelevant background. Set up a structured scratchpad with formulas written cleanly so you can verify steps if the final answer does not match the multiple-choice options.

Verbal Reasoning

30 questions · 20 minutes (~40 seconds per question)

What it tests. Evaluating written arguments and drawing conclusions from text data. Distinguishing verified fact, logical inference, and unproven assumption against a passage.

Worked example. A passage discusses automated trade execution algorithms reducing block sizes and mid-tier firms scaling back operations. A statement claims "automated trading algorithms have reduced the average block size of sovereign debt transactions". The passage states this directly, so the answer is True. A second statement claims the firms scaled back due to "lack of development capital", which is not in the passage even though it may be true in reality, so the answer is Cannot Say.

Common traps. The single biggest failure mode is bringing outside knowledge in. Smart candidates who read widely often evaluate statements against real-world facts rather than the strict text. Missing qualifying words (always, never, sometimes, specifically) leads to mis-scoping logical statements.

How to handle it. Strict text-only evaluation. If a statement seems highly likely in the real world but the passage does not explicitly say it, select Cannot Say. Underline qualifying language; a statement using "always" is much harder to prove True than one using "sometimes".

Inductive / Logical Reasoning

18 questions · 24 minutes (~80 seconds per question)

What it tests. Abstract logical thinking and non-verbal pattern recognition. Identifying rules across geometric shapes, matrix shifts, and spatial transformations.

Worked example. A 3x3 matrix where each box combines three elements: outer frame alternates square, circle, triangle across rows; internal shading moves clockwise across corners; central lines increase by one per column. To solve the blank tile, apply each rule independently rather than trying to read the full shape at once.

Common traps. Trying to analyse the entire complex shape simultaneously causes cognitive overload. Getting stuck on a single difficult puzzle early burns through the time budget and leaves you rushing the back half.

How to handle it. Isolate one attribute at a time, just the background colour, just the line count, just the rotation. Use that single rule to eliminate incorrect options before moving to the next attribute. If you cannot identify the pattern within 60 seconds, make an educated guess, eliminate obvious wrong options, and move on.

OPQ32 Personality Questionnaire

104 question blocks · Untimed, typically 30-45 minutes

What it tests. Behavioural and work-style profile. Goldman screens for alignment with the firm's competencies: relationship management, analytical thinking, resilience and drive.

Worked example. Each block contains four behavioural statements. You select exactly one as "Most like me" and one as "Least like me". The system shuffles similar combinations throughout the test to check internal consistency.

Common traps. Trying to game the test by creating a "perfect" persona (marking every aggressive leadership statement as Most, every team-focused statement as Least) creates contradiction flags in the consistency checks and can trigger automatic rejection.

How to handle it. Evaluate options as comparisons within the block, not in isolation. Reflect actual workplace or academic behaviour. Keep the target division's skills in mind but avoid extreme patterns; balance initiative with collaboration.

HackerRank Technical (Engineering only)

2-3 coding tasks + 2 maths/logic questions · 90-120 minutes

What it tests. Software engineering fundamentals, algorithmic efficiency, optimisation, and mathematical reasoning under time pressure. Coding difficulty aligns with LeetCode Medium, focused on array manipulation, string processing and search algorithms.

Worked example. A circular distribution problem: N variables represent children in a circle indexed 1 to N. Starting from position D, items are distributed clockwise for T turns. Return the final 1-based index. A naive O(N*T) loop fails large hidden test cases; the optimised O(1) solution uses modular arithmetic: (D + T - 2) mod N + 1.

Common traps. Writing brute-force O(N squared) solutions that pass visible tests but fail hidden performance cases. Failing to account for empty inputs, negative integers or integer overflow boundaries.

How to handle it. Write a clean working solution first to secure baseline points before optimising. Analyse time and space complexity upfront, aim for O(N) or O(N log N) using HashMaps, two-pointer tracking or sliding windows. Test against zero values, single-element arrays and maximum integer limits before final submission.

Pass mark

How Goldman Sachs scores the assessment

Goldman evaluates assessment performance as a comparative percentile rank against a specific norm group, typically all applicants from target global universities within that recruitment cycle. The firm processes scores using a non-compensatory aggregation model: exceptional performance in one section cannot make up for a significant failure in another.

Competitive percentile thresholds

  • Numerical Reasoning. >= 80th percentile (highest weight for analytical tracks)
  • Verbal Reasoning. >= 70th percentile
  • Inductive Reasoning. >= 70th percentile

Methodology. Percentile-based against the norm group, not raw scores. Cross-sectional weighting is non-compensatory: a 99th-percentile verbal alongside a 40th-percentile numerical will trigger an automatic rejection.

Response time. Some candidates receive the HireVue invitation within 48 hours of completing the tests; others see portal status remain "Under Consideration" for several weeks while recruitment teams adjust benchmarks for later application batches.

Score visibility. Closed testing system. Candidates never see their raw scores or percentile rankings. The only inference is whether you receive an invitation to the next stage or a rejection.

How to practise

Drill Goldman Sachs's exact format

Same provider, same section structure, same time pressure. With a scored report after every test so you can fix the weakest section before the real one.

  • SHL Verify G+ Suite (business tracks) and HackerRank (engineering tracks)-calibrated practice. Not a generic stand-in. The exact provider and section structure Goldman Sachs uses on the day.
  • Adaptive question difficulty. Questions get harder when you nail them, easier when you struggle. Walk away knowing where you actually stand.
  • Coaching, not just a score. "You are spending too long on table-data questions" beats "you scored 68%". Specific advice per weak section.
  • Percentile benchmarking. Your score compared to the UK candidate pool, so you know if 70% is excellent or worrying for that test.

Free practice section, scored. Full report unlocks with the Pack.

Why candidates fail

How candidates lose Goldman Sachs's assessment

Specific failure patterns documented across past applicants. Most are avoidable with structured preparation.

  1. 1

    Mismanaging the 66-second numerical time budget

    Approaching numerical as an open-ended maths test. Getting stuck on a complex multi-stage calculation for 3-4 minutes leaves you guessing the final five questions, which destroys accuracy.

  2. 2

    Relying on outside facts in verbal evaluation

    Choosing True or False based on real-world knowledge of finance or regulation rather than what the passage explicitly supports. If the text does not directly say it, the answer is Cannot Say.

  3. 3

    Misinterpreting unit scales

    Overlooking critical labels like "In Thousands" or foreign currency denominations means the final calculation is off by orders of magnitude and misses the multiple-choice options entirely.

  4. 4

    Overcomplicating simple visual transformations

    In inductive reasoning, candidates burn time looking for intricate rules when the pattern is actually basic clockwise rotation or alternating colours. Staring at the full matrix causes overload.

  5. 5

    Answering OPQ32 with extreme contradictions

    Trying to game the personality questionnaire with an aggressive one-dimensional persona triggers internal consistency flags and can result in automatic rejection.

  6. 6

    Submitting sub-optimal HackerRank code

    Engineering candidates writing nested-loop O(N squared) solutions that time out on large datasets. The code passes visible tests but fails the hidden performance ones, costing critical execution points.

What works

What separates the candidates who pass

Concrete habits drilled by candidates who clear the cut-off, drawn from applicant accounts and practice patterns.

  • Structured scratchpad workspace

    Organise a clean scratchpad with labelled columns for question steps before launching the test. Cleanly written mid-step calculations let you verify quickly if your answer does not match the options.

  • Process of elimination on complex puzzles

    On numerical or inductive questions, narrow down options first. If the correct answer must be odd, or the shape must rotate clockwise, eliminate the violators before solving in full.

  • Strict "Cannot Say" discipline

    Top scorers recognise Cannot Say is frequently correct. They do not make logical leaps; if the text does not directly support or contradict the statement, they select Cannot Say and move on.

  • Realistic full-length practice simulations

    Consistent passers do not rely on passive reading or untimed practice. They run full-length, timed simulations on the exact SHL Verify G+ interface to build pacing instincts and stamina.

From past applicants

How recent Goldman Sachs candidates approached the assessment

Anonymised candidate accounts of how recent applicants approached the Goldman Sachs assessment. Each covers the prep, the experience, and the outcome.

Global Banking & Markets, Summer Analyst

Prep. Three weeks of preparation focused on the SHL format. Timed 20-minute numerical drills without a calculator to build quick estimation. Verbal-passage qualifier-word practice.

Experience. Test invitation arrived two days after application submission; gave myself 48 hours to prepare before launching. The numerical section featured detailed tables with currency translations under pressure. Worked through the calculations systematically and avoided getting stuck on a single problem. The verbal section was dense, but keeping evaluations strictly within the text helped me move through efficiently.

Outcome. Cleared the assessment stage and advanced to the HireVue video interview within four days.

Practice strategy

Where to drill the Goldman Sachs format

To pass the Goldman online assessment, preparation should match the specific platform architecture used by the firm. Passive review is rarely effective for competitive tracks.

  • Intervyo SHL Verify G+ format practice

    The Pack includes timed numerical, verbal and inductive sets matched to Goldman's exact SHL configuration. Adaptive difficulty, scored against the UK candidate pool percentile, with a per-section coaching debrief that tells you which question type is dragging your score.

  • Engineering HackerRank-style coding practice

    Intervyo's monthly plan includes a coding runner with the same medium-to-hard algorithm problems Goldman puts on its engineering screen. Array manipulation, string processing, search algorithms, dynamic programming, all on a strict per-problem clock with scored test cases.

  • Why Intervyo over generic prep libraries

    Generic test banks give you questions but no firm-specific calibration: Goldman's SHL uses a particular subset of formats, OPQ32 has a particular profile shape, the HackerRank screen has a particular difficulty curve. Intervyo is built around the Goldman shape specifically, not a one-size-fits-all aptitude library.

Time investment. Successful applicants invest between 15 and 30 hours of structured preparation over the two to three weeks leading up to the assessment. Split your time between quick maths, mastering verbal logical constraints, and running full-length timed simulations to build pacing.

Time management

Five moves that protect your score

  1. 01Set your own clock per question. Divide section time by question count. Move on when you hit your per-question budget, even if you are mid-thought.
  2. 02Read the question before the chart. Half the work in numerical is finding the right number in a table. Knowing what you are looking for cuts the time in half.
  3. 03Use "Cannot Say" generously. Verbal reasoning rewards strict reading. If the passage does not say it, the answer is "Cannot Say", not your own inference.
  4. 04Skip the impossible ones. Most tests do not penalise wrong answers more than skips. If you cannot see it in 20 seconds, flag and move on.
  5. 05Practise the exact format, not a generic stand-in. SHL Verify G+ Suite (business tracks) and HackerRank (engineering tracks) has its own rhythm, and a generic reasoning test is not the same. Intervyo's simulation is calibrated to this format, so you rehearse the real thing under real timing rather than a generic aptitude set.

FAQ

Goldman Sachs Psychometric Tests questions, answered

For the online SHL Verify G+ test completed at home, a standard calculator is permitted. Preparation should still focus on quick estimation and mental arithmetic; navigating complex calculations manually under strict time limits is materially slower.

The other rounds

The rest of the Goldman Sachs process

Psychometric Tests is one of four rounds. The Pack covers all four end to end.

Goldman Sachs Pack

Pass Goldman Sachs's psychometric test

Practise the exact SHL Verify G+ Suite (business tracks) and HackerRank (engineering tracks) format ahead of time, scored against the Goldman Sachs pass mark. One Pack covers HireVue, psychometric tests, live interviews and the assessment centre.

Get the Goldman Sachs Pack · £69
7-day money-back guarantee

Intervyo is not affiliated with or endorsed by Goldman Sachs, SHL, Pymetrics, Cubiks, AON or any other assessment provider. Test details are sourced from past applicants and published guidance; verify on the firm's careers site before applying. Sector: Investment Banking.

Goldman Sachs Pack

£69 one-time

Get the Pack