Skip to content

ZS Associates Placement Papers 2025

Overview

This page is a working set of ZS Associates placement papers from 2025: from student reports questions, the 2025 online assessment pattern, and step-by-step solutions. Use it to see what ZS Associates actually asked in the latest cycle, how hard the rounds were, and which themes (DSA, system design, aptitude, or role-specific topics) mattered most. Practice the problems below under timed conditions, then cross-check with the interview and preparation guides if you are targeting an upcoming ZS Associates drive.

ZS Associates Online Assessment 2025 pattern

Section Questions Time Difficulty
Aptitude 20-25 30 min Medium
Logical Reasoning 15-20 30 min Medium
Coding 1-2 30 min Medium

ZS Associates Placement Papers 2025 - actual questions & solutions

This section contains practice questions styled on ZS Associates placement papers 2025 (recent-cycle pattern), with worked solutions. Use them as timed sectional drills - from student reports drives vary by college and role, so treat this as a high-signal practice bank, not an official paper dump.

Question 1

Q1: A number is increased by 20% and then decreased by 20%. Find the net percentage change.

Solution:

Let original = 100. After +20% → 120. After −20% → 120 − 24 = 96.

Net change = 100 − 96 = 4. Net % = 4% decrease (always a loss of (20/10)² %).

Answer: 4% decrease

Question 2

Q2: A shopkeeper marks goods 50% above cost and gives a 20% discount. Find the profit percentage.

Solution:

Let CP = 100. MP = 150. SP after 20% discount = 120.

Profit % = 120 − 100 = 20%.

Answer: 20%

Question 3

Q3: Pipe A fills a tank in 10 hours, pipe B in 15 hours. How long to fill together?

Solution:

Combined rate = 1/10 + 1/15 = (10+15)/(10×15). Time = 10×15/(10+15) = 6 hours.

Answer: 6 hours

Question 4

Q4: A train 240 m long crosses a pole in 16 seconds. Find its speed in km/h.

Solution:

Speed = distance/time = 240/16 m/s = (240/16) × (18/5) = 54 km/h.

Answer: 54 km/h

Question 5

Q5: Which number does not belong: 10, 25, 45, 54, 60, 75, 80?

Solution:

Pattern: All divisible by 5 except 54

Odd one out = 54.

Answer: 54

Question 6

Q6: Pointing to a photo, Ravi said, ‘He is the son of my grandfather’s only son.’ How is the person related to Ravi?

Solution:

Grandfather’s only son = Ravi’s father. Son of Ravi’s father = Ravi himself (or his brother).

In standard puzzle framing with one son implied for the speaker context: the person is Ravi’s brother (or Ravi). Most campus keys take Brother.

Answer: Brother

Question 7

Q7: Choose the antonym of ‘Transparent’.

Solution:

‘Transparent’ means roughly the opposite of Opaque.

Answer: Opaque

Question 8

Q8: Fill in the blank: ‘She has been working here _____ 2019.’

Solution:

Use since with a point in time; use for with a duration.

Correct: since.

Answer: since

Question 9: valid parentheses

Show solution

Problem Statement: Given a string of brackets, determine if it is valid.

Example:

Input: "()[]{}"
Output: true

Solution (Java):

public boolean isValid(String s) {
Deque<Character> st = new ArrayDeque<>();
Map<Character, Character> pair = Map.of(')', '(', ']', '[', '}', '{');
for (char c : s.toCharArray()) {
if (pair.containsValue(c)) st.push(c);
else if (st.isEmpty() || st.pop() != pair.get(c)) return false;
}
return st.isEmpty();
}

Time Complexity: O(n)
Space Complexity: O(n)

Question 10: rotate array right by k

Show solution

Problem Statement: Rotate the array to the right by k steps.

Example:

Input: [1,2,3,4,5,6,7], k = 3
Output: [5,6,7,1,2,3,4]

Solution (Java):

public void rotate(int[] nums, int k) {
k %= nums.length;
reverse(nums, 0, nums.length - 1);
reverse(nums, 0, k - 1);
reverse(nums, k, nums.length - 1);
}
void reverse(int[] a, int l, int r) {
while (l < r) { int t = a[l]; a[l++] = a[r]; a[r--] = t; }
}

Time Complexity: O(n)
Space Complexity: O(1)

Question 11: two sum

Show solution

Problem Statement: Given an array of integers and a target, return indices of two numbers that add up to target.

Example:

Input: nums = [2, 7, 11, 15], target = 9
Output: [0, 1]

Solution (Java):

public int[] twoSum(int[] nums, int target) {
Map<Integer, Integer> map = new HashMap<>();
for (int i = 0; i < nums.length; i++) {
int need = target - nums[i];
if (map.containsKey(need)) return new int[]{map.get(need), i};
map.put(nums[i], i);
}
return new int[]{};
}

Time Complexity: O(n)
Space Complexity: O(n)

Key insights from 2025 ZS Associates Online Assessment

  1. Aptitude Section is Critical: Must perform well in quantitative and logical reasoning
  2. Logical Reasoning: Strong emphasis on analytical thinking, consulting skills, and data interpretation
  3. Coding Section: 1-2 coding problems in 30 minutes requires good problem-solving skills
  4. Time Management: 20-25 aptitude in 30 min + 15-20 logical reasoning in 30 min + 1-2 coding in 30 min
  5. Success Rate: Only 15-20% cleared assessment and advanced to interviews
  6. Platform: ZS Associates assessment platform
  7. Focus Areas: Quantitative aptitude, logical reasoning, consulting skills, data interpretation, analytical thinking
  8. Enhanced Emphasis: Optimal solutions and consulting skills knowledge

ZS Associates 2025 interview experiences

Based on recent candidate experiences from 2025 ZS Associates interviews:

2025 Interview Process:

  1. Online Assessment (90 minutes): Aptitude (20-25) + Logical Reasoning (15-20) + Coding (1-2)
  2. Technical Interview (45-60 minutes): Data interpretation, analytical thinking, problem-solving, case studies, consulting skills
  3. HR Interview (30-45 minutes): Behavioral questions, company fit, motivation, analytical mindset, consulting passion

2025 Interview Trends:

  • Increased emphasis on consulting skills and analytical frameworks
  • More focus on optimal solutions and modern consulting methodologies
  • Enhanced behavioral questions about analytical mindset and innovation
  • Questions about consulting skills and analytical frameworks

Common 2025 Interview Topics:

  • Aptitude: Quantitative reasoning, logical reasoning, data sufficiency
  • Logical Reasoning: Analytical thinking, case studies, data analytics, consulting skills
  • Coding: Arrays, strings, basic algorithms, data processing
  • Behavioral: Problem-solving approach, analytical mindset, teamwork, motivation, consulting passion

Success Tips:

  • Strong aptitude and logical reasoning performance is essential
  • Practice data interpretation, analytical thinking, and consulting skills
  • Understand case study analysis and consulting frameworks
  • Practice coding problems - arrays, strings, data processing algorithms
  • Prepare behavioral examples demonstrating analytical thinking
  • Understand ZS Associates’s business model and consulting services

For detailed interview experiences from 2025, visit ZS Associates Interview Experience page.

Preparation tips for ZS Associates 2025 pattern

  1. Master Aptitude: Focus on quantitative, logical reasoning - practice regularly
  2. Consulting Skills Expertise: Strong understanding of consulting skills, analytical thinking, data interpretation
  3. Case Studies: Practice case study analysis and consulting frameworks
  4. Practice Previous Year Papers: Solve ZS Associates assessment papers from 2020-2025 to understand evolving patterns
  5. Time Management: Practice completing 20-25 aptitude questions in 30 minutes
  6. Coding Practice: Practice arrays, strings, basic algorithms, data processing
  7. Logical Reasoning: Practice analytical thinking, case studies, data analytics, consulting skills
  8. Behavioral Preparation: Prepare examples using STAR format - analytical thinking, problem-solving, consulting passion
  9. Mock Tests: Take timed practice tests to improve speed and accuracy
  10. Consulting Focus: Understand consulting industry and ZS Associates’s services

Comments & Suggestions

Similar companies

Accenture · Deloitte · EY · KPMG · PwC · Capgemini