Upload Button Icon Add office photos

Epsilon

Compare button icon Compare button icon Compare

Filter interviews by

Epsilon Senior Engineer Interview Questions and Answers

Updated 30 Jul 2021

Epsilon Senior Engineer Interview Experiences

1 interview found

I appeared for an interview in Jun 2021.

Interview Questionnaire 

1 Question

  • Q1. Sql queries

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest

Top trending discussions

View All
Interview Hub
5d (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

Senior Engineer Interview Questions Asked at Other Companies

Q1. What does the 'M' signify in M20, M25, and M30 grades of concrete ... read more
asked in Nagarro
Q2. Write a program that takes an integer N and an array of integers ... read more
asked in Tata Elxsi
Q3. What is Quality Assurance. Difference between Quality assurance a ... read more
Q4. Is it possible to work with multiple threads in core data? If so, ... read more
Q5. When would you perform a half or full engine overhaul?

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
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Reasoning and logic base qus

Round 2 - Technical 

(1 Question)

  • Q1. About metrics like Cpc, cvr
Round 3 - One-on-one 

(1 Question)

  • Q1. Discuss about previous work

Interview Questionnaire 

1 Question

  • Q1. SQL queries, basic questions on python programming, statistical concepts and basic questions on machine learning algorithms.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Talk about yourself
  • Q2. What is your professional experience
Round 2 - Aptitude Test 

Simple SQL questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest if you don't know!

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.
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Profile Related
  • Q2. Product management
Are these interview questions helpful?
Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before May 2024, where I was asked the following questions.

  • Q1. Introduce Yourself
  • Ans. 

    I am a detail-oriented Business Analyst with a strong background in data analysis and project management, passionate about driving business success.

    • Over 5 years of experience in business analysis across various industries, including finance and healthcare.

    • Skilled in gathering and documenting requirements through stakeholder interviews and workshops.

    • Proficient in data visualization tools like Tableau and Power BI to pre...

  • Answered by AI
  • Q2. Basic about digital marketing.
  • Q3. Guesstimate questions
  • Q4. Arthematic questions
  • Q5. Situation based question
  • Ans. 

    As a Business Analyst, I prioritize stakeholder communication and data analysis to drive project success.

    • Engage stakeholders through regular meetings to gather requirements.

    • Utilize data visualization tools to present findings effectively.

    • Conduct SWOT analysis to identify project strengths and weaknesses.

    • Example: Collaborated with marketing to analyze customer feedback, leading to a 20% increase in satisfaction.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Basic maths and excel question.
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
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

Tell us how to improve this page.

Epsilon Senior Engineer Salary
based on 8 salaries
₹19.3 L/yr - ₹28.3 L/yr
123% more than the average Senior Engineer Salary in India
View more details

Epsilon Senior Engineer Reviews and Ratings

based on 5 reviews

4.1/5

Rating in categories

4.3

Skill development

4.0

Work-life balance

4.3

Salary

4.3

Job security

4.3

Company culture

3.4

Promotions

4.2

Work satisfaction

Explore 5 Reviews and Ratings
Senior Software Engineer
403 salaries
unlock blur

₹17.2 L/yr - ₹31 L/yr

Software Engineer2
199 salaries
unlock blur

₹10.2 L/yr - ₹18 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