Numerical reasoning
12-15 questions · Roughly 18-20 minutes
What it tests. Macro-level data synthesis, multi-step percentage change, CAGR and rapid currency fluctuation under time decay.
Worked example. If the European division's revenue grows 12.5% in Year 5 while the EUR depreciates 4.2% against the USD, what is its net dollar contribution to total global revenue, all else stagnant?
Common traps. The All-Data trap (reading the whole chart first), reversing a currency conversion, applying tax after conversion, and unrounded floating points.
How to handle it. Scan the question before the dataset to isolate the rows that matter; keep a structured scratch sheet; if a question takes over 75 seconds, make an educated guess and move on.
Verbal reasoning
10-12 passages · Aggressive, under 45 seconds per assertion
What it tests. Differentiating explicit facts, logical implications and unfounded external assumptions, with complete objectivity.
Worked example. A passage says bi-weekly stress tests are required except for portfolios meeting Basel IV. The assertion "any portfolio passing the stress test is automatically Basel IV compliant" is Cannot Say.
Common traps. Bringing outside knowledge, confusing absolutes with probabilities ("often" vs "always"), and re-reading a confusing paragraph repeatedly.
How to handle it. Read the assertion first, anchor to its keywords, skim for them, and treat the text as a closed universe.
Logical / inductive / deductive reasoning
10-12 puzzles · About 15 minutes
What it tests. Fluid intelligence and pattern recognition: mapping multi-layered concurrent rules from limited inputs.
Worked example. A 3x3 grid where shapes rotate 90 degrees across rows, color fill alternates down columns and line count increases sequentially; select the cell matching all three rules.
Common traps. Hyper-focusing on one component, over-complicating a simple binary alternation, and analysis paralysis on one question.
How to handle it. Break each puzzle into isolated channels (shape, count, orientation, color) and confirm the rule holds in both row and column.
Situational judgment (SJT)
What it tests. A psychometric blueprint of alignment with the 14 Business Principles: judgment, commercial awareness, risk mitigation and teamwork.
Worked example. At 11:30pm your Associate needs a pitch book for an 8am meeting and a separate VP drops a valuation model due 7:30am. Most effective: notify both, outline capacity and ask them to coordinate priority or assign support.
Common traps. The Lone Wolf fallacy (heroically taking it all on), the hierarchy blindspot (side-lining a junior to appease a senior), and choosing passive options.
How to handle it. Read the 14 Business Principles before the test, prioritize transparency and data-driven escalation, and never hide a mistake or cut out a teammate.
Personality questionnaire (OPQ32)
What it tests. A behavioral matrix across influence, execution, empathy, resilience and adaptability, checked against successful-employee profiles.
Common traps. The Perfect Candidate contradiction (gaming opposite traits across blocks lowers your validity score) and extreme polarization.
How to handle it. Answer through your most professional, collaborative work self, stay consistent, and trust your first instinct (under 15 seconds per block).
HackerRank (Engineering / Quant tracks)
What it tests. Algorithmic architecture, Big-O time complexity, data structures, combinatorics, linear algebra and discrete math.
Worked example. Find the maximum sub-array profit margin under a sliding-window constraint with an optimal runtime of O(N log N) or better.
Common traps. Brute-force O(N^2) solutions that fail on dense inputs, and poor time allocation across coding vs MCQs.
How to handle it. Optimize from the start, handle edge cases (empty inputs, negatives, overflow), and dry-run against the sample cases before submitting.