Upload Button Icon Add office photos

Epsilon

Compare button icon Compare button icon Compare

Filter interviews by

Epsilon Senior Manager Interview Questions and Answers

Updated 6 Feb 2023

Epsilon Senior Manager Interview Experiences

2 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Feb 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Case Study 

It can be related to a scenario which might be related to an organization who is looking to move into digital domain to sell their products, ask will be create a roadmap, program plan, proposed technology stack and budgeting.

Round 3 - One-on-one 

(1 Question)

  • Q1. Generic questions related to the role & responsibilities in current company Scenario based questions to understand customer handling capability, people management skills, risk management, communication ski...
Round 4 - One-on-one 

(1 Question)

  • Q1. Mostly VP or SVP round where they look at the candidate's communication skills and expression while talking in terms of confidence, articulation and presentation. This is the time when you can again call o...

Interview Preparation Tips

Topics to prepare for Epsilon Senior Manager interview:
  • Program Management
  • Risk Management
  • People Management
  • Project Management
  • Agile Methodology
Interview preparation tips for other job seekers - Stay calm, go through Epsilon website, understand what they do and their products.
Ensure that you understood the question well and respond accordingly in few lines rather than beating around the bush.
Use examples for most of the questions which gives the feeling that you have really worked on those areas.

I applied via Job Portal and was interviewed in Oct 2021. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. How do you handle conflict between resources
  • Ans. 

    I encourage open communication and collaboration to resolve conflicts and find mutually beneficial solutions.

    • Encourage open communication and active listening

    • Identify the root cause of the conflict

    • Brainstorm potential solutions together

    • Find a mutually beneficial solution

    • Document the resolution and follow up to ensure success

  • Answered by AI
  • Q2. What challenges you faced and what’s your contribution , how did you handle

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare with what you are and real time experience will help to crack the interview

Senior Manager Interview Questions Asked at Other Companies

Q1. What is your understanding of the requirements for shuttering mat ... read more
asked in Tata Motors
Q2. Types of pumps and for which process which types of pumps are req ... read more
asked in Tata Motors
Q3. What would you do if there was a shortage of parts for a customer ... read more
asked in Tata Motors
Q4. If you are a customer of a TATA product and face a problem, where ... read more
asked in Flipkart
Q5. What would you do to double the revenue of your organization?

Top trending discussions

View All
Interview Hub
1w (edited)
anshitanegi
·
ex -
Planet Spark
When HR’s Chinese English made me drop the interview!
So, I talked to the HR yesterday about the interview. I asked Please send me the location But their English… bro I was shocked! It was like talking to someone jisne english nahi kuch ar hi seekh liya ho, if the HR’s English is this I can only imagine the rest of the company I decided to drop the interview with this chinese english😶‍🌫️
FeedCard Image
Got a question about Epsilon?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Oct 2019. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Scripting was major focus, program to read the numbers 1 to infinity and convert them to words , ex : 1 as one , 100 as hundred , 1543 as one thousand five hundreden fourty three
  • Ans. 

    A program to convert numbers into their English word representation, handling numbers from 1 to infinity.

    • Use a recursive function to break down numbers into manageable parts.

    • Handle special cases for numbers like 11-19 (e.g., eleven, twelve).

    • Use arrays or dictionaries to map numbers to words for efficiency.

    • Example: 1543 is broken down into 1000 + 500 + 40 + 3, resulting in 'one thousand five hundred forty three'.

  • Answered by AI
  • Q2. Ansible concepts, this was major focus
  • Q3. Jenkins pipeline concepts
  • Q4. Basic other tools questions

Interview Preparation Tips

Interview preparation tips for other job seekers - It wasn't that scary, one technical round, managerial tech round, manager round, hr round, all happened in a single day

Skills evaluated in this interview

I appeared for an interview in Feb 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 Minutes
Round difficulty - Hard

The test was at 6 pm with cam on and in fullscreen mode.

  • Q1. 

    Interleaving Two Strings Problem Statement

    You are given three strings 'A', 'B', and 'C'. Determine if 'C' is formed by interleaving 'A' and 'B'.

    String 'C' is an interleaving of 'A' and 'B' if the lengt...

  • Ans. 

    The problem involves determining if a string 'C' is formed by interleaving two given strings 'A' and 'B'.

    • Check if the length of 'C' is equal to the sum of the lengths of 'A' and 'B'.

    • Verify if all characters of 'A' and 'B' exist in 'C' while maintaining their order.

    • Return 'True' if 'C' is an interleaving of 'A' and 'B', otherwise return 'False'.

  • Answered by AI
  • Q2. 

    Construct Binary Tree from Inorder and Postorder Traversal

    Given two lists representing the inorder and postorder traversal of a binary tree of integer type with 'N' nodes, construct the binary tree and r...

  • Ans. 

    Construct a binary tree from inorder and postorder traversal lists and return its root.

    • Create a map to store the indices of elements in the inorder traversal list for quick access during tree construction.

    • Use the postorder list to determine the root of the tree and recursively build left and right subtrees.

    • Construct the tree by recursively dividing the inorder list based on the root index in postorder list.

    • Return the r...

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Easy

At 10:00 AM. Interviewer was very friendly and young but his cam was off.

  • Q1. 

    Find Paths in Binary Tree

    Kevin has sketched a series of integers, forming a diagram that represents a binary tree. Challenged by a friend, Kevin needs to find all paths from the root to the leaf where th...

  • Ans. 

    Find all root-to-leaf paths in a binary tree that sum to a given number K.

    • Use Depth-First Search (DFS) to traverse the tree.

    • Keep track of the current path and its sum as you traverse.

    • When a leaf node is reached, check if the sum equals K.

    • If it does, store the path as a valid result.

    • Example: For tree [5, 6, 4] and K=15, path [5, 6, 4] is valid.

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Easy

It was held at 4 p.m. The interviewer was senior compared to the one in the previous round. Also, his cam was also on, but he wasn't speaking much and neither giving any expressions.

  • Q1. 

    Boxes of Power Problem Statement

    Given a set of boxes represented by an array gainPower, where each box has a certain power value, along with an initial power value 'power', your task is to maximize the t...

  • Ans. 

    Maximize total score by selecting boxes optimally based on power values and operations.

    • Iterate through the boxes and perform operations based on power values and current score

    • Keep track of power, score, and selected boxes to maximize total score

    • Example: For input [3, 50, [20, 30, 40]], select boxes with power 20 and 30 to get a score of 2

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in MumbaiEligibility criteriaNone except no active backlogsMedia.net interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, DP, OOPS, Operating Systems, Computer NetworksTime required to prepare for the interview - 7 monthsInterview preparation tips for other job seekers

Tip 1 : DSA is the key. Starting from scratch, one can become proficients in a couple of months.
Tip 2 : Solve questions just a bit outside your comfort zone. Solve too easy to too hard questions is not of any use.
Tip 3 : Be consistent, make a habit of following good coding practices.
Tip 4 : Get to know the ins and out of your projects. You must be very confident while explaining those.
Tip 5 : Don't just directly to system-design, brush up on OOPS principles, networks, OS, DBMS before that.

Application resume tips for other job seekers

Tip 1 : Keep it crisp and to the point. Make bullet points.
Tip 2 : Bold the things you want to be paid attention to. Use numbers rather than vague sentences.
Tip 3 : Only put the things you are confident about.
Tip 4 : Don't put things irrelevant to the job, it only dilutes the main content.

Final outcome of the interviewRejected

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Feb 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Python, sql, etl, cloud, web tool
Round 3 - Behavioral 

(1 Question)

  • Q1. Functional question and write some sql basic query
Round 4 - Client Interview 

(1 Question)

  • Q1. Basic question on project
Round 5 - HR 

(1 Question)

  • Q1. Salary negotiation and check behaviour qiestion

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company too work and enjoy latest tech stack in data science and analytics
Interview experience
4
Good
Difficulty level
Easy
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jun 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Case Study 

They gave me case study in interview based on that I had provide the solution.

Round 3 - Technical 

(1 Question)

  • Q1. They asked question regarding SQL, statistics and some project related questions

Epsilon HR Interview Questions

14 questions and answers

Q. Explain your previous work experience.
Q. Why do you want to work at Epsilon?
Q. Describe your current role.

Data Analyst Interview Questions & Answers

Publicis user image pratik mungekar

posted on 28 Mar 2022

I applied via Campus Placement and was interviewed in Feb 2022. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Tell me about Projects done during course

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with core concepts and portfolio of your work to showcase your skill
Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. Basic JavaScript and React.js questions
  • Q2. Questions on functions, hooks and DOM
  • Q3. Questions on SSR
  • Q4. Questions on strings and arrays
Round 2 - Coding Test 

Api related questions

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is Indexing in Mysql
  • Ans. 

    Indexing in MySQL is a technique to improve the performance of database queries by creating a data structure that allows for faster data retrieval.

    • Indexes are created on one or more columns of a table.

    • They help in speeding up the search, sorting, and joining of data.

    • Indexes can be created using different algorithms like B-tree, hash, or bitmap.

    • Using indexes appropriately can significantly enhance query performance.

    • Exam...

  • Answered by AI
  • Q2. Opps concepts in php
  • Ans. 

    Object-oriented programming concepts in PHP

    • Encapsulation: bundling data and methods together in a class

    • Inheritance: creating new classes based on existing ones

    • Polymorphism: using a single interface to represent different types

    • Abstraction: hiding unnecessary details and exposing only essential features

    • Class: blueprint for creating objects

    • Object: instance of a class

    • Method: function defined inside a class

    • Property: variabl...

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Profile Related
  • Q2. Product management

Epsilon Interview FAQs

How many rounds are there in Epsilon Senior Manager interview?
Epsilon interview process usually has 2-3 rounds. The most common rounds in the Epsilon interview process are One-on-one Round, Resume Shortlist and Case Study.
How to prepare for Epsilon Senior Manager interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Epsilon. The most common topics and skills that interviewers at Epsilon expect are Client Management, Team Management, Consulting, Digital Marketing and Financial Reporting.
What are the top questions asked in Epsilon Senior Manager interview?

Some of the top questions asked at the Epsilon Senior Manager interview -

  1. How do you handle conflict between resour...read more
  2. Generic questions related to the role & responsibilities in current company Sce...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more
Epsilon Senior Manager Salary
based on 38 salaries
₹34.4 L/yr - ₹60 L/yr
91% more than the average Senior Manager Salary in India
View more details

Epsilon Senior Manager Reviews and Ratings

based on 2 reviews

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

4.8

Salary

5.0

Job security

5.0

Company culture

4.0

Promotions

5.0

Work satisfaction

Explore 2 Reviews and Ratings
Senior Manager Experience Engineering - Mobile Development

Gurgaon / Gurugram

5-11 Yrs

Not Disclosed

PG India - Senior Manager- Data Science

Mumbai

7-10 Yrs

Not Disclosed

Senior Manager, Creative Technology

Bangalore / Bengaluru

4-16 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
410 salaries
unlock blur

₹17.2 L/yr - ₹31 L/yr

Software Engineer2
197 salaries
unlock blur

₹10.2 L/yr - ₹17.7 L/yr

Senior Developer
176 salaries
unlock blur

₹13 L/yr - ₹22 L/yr

Software Engineer
168 salaries
unlock blur

₹7.7 L/yr - ₹13.9 L/yr

Lead Software Engineer
156 salaries
unlock blur

₹24.9 L/yr - ₹40.1 L/yr

Explore more salaries
Compare Epsilon with

R.R. Donnelley

3.7
Compare

Smollan Group

3.9
Compare

ChannelPlay

3.8
Compare

Affinity Express

2.9
Compare
write
Share an Interview