Upload Button Icon Add office photos

Filter interviews by

Epsilon Senior Software Engineer Interview Questions and Answers

Updated 29 Jul 2024

Epsilon Senior Software Engineer Interview Experiences

4 interviews found

Senior Software Engineer Interview Questions & Answers

user image Meghana Shanubhogh

posted on 24 May 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Question based on your experience. Mine was mostly design questions on AWS and how to use try and catch
  • Q2. Javascript using async/await with try catch block
  • Ans. 

    Using async/await with try catch block in Javascript

    • Use async keyword before the function declaration to make it asynchronous

    • Use await keyword before the function call to wait for the promise to resolve

    • Wrap the async/await code in a try catch block to handle errors

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Technical with design questions on web technology

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Coding Test 

MCQs on hdfs, sql and spark. One data structures coding test

Round 2 - Technical 

(2 Questions)

  • Q1. Kafka architecture
  • Q2. HDFS namenode features

Senior Software Engineer Interview Questions Asked at Other Companies

asked in DBS Bank
Q1. Tell me about yourself. What technology are you using? What is a ... read more
asked in GlobalLogic
Q2. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
asked in UST
Q3. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Capgemini
Q4. Pascal's Triangle Construction You are provided with an integer ' ... read more
Q5. K Largest Elements Problem Statement You are given an integer k a ... read more
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Recruitment Consulltant and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Your tech related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your tech stack

I applied via Jobsforher and was interviewed in Aug 2022. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Oops concepts, angular, SQL, design patterns questions
Round 2 - Technical 

(1 Question)

  • Q1. Scenario based technical questions design patterns n real world problems
Round 3 - HR 

(1 Question)

  • Q1. Casual discussion on compensation

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well with technical concepts. All the best!!!

Epsilon interview questions for designations

 Software Engineer

 (1)

 Lead Software Engineer

 (3)

 Software Testing Engineer

 (1)

 Software Engineer II

 (1)

 Software Engineer Level 1

 (1)

 Software Developer

 (3)

 Software Tester

 (1)

 Software Engineer2

 (1)

Senior Software Engineer Jobs at Epsilon

View all

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
  • 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
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
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Pivot columns in sql
  • Ans. 

    Pivoting columns in SQL involves transforming rows into columns to display data in a different format.

    • Use the PIVOT keyword in SQL to pivot columns

    • Specify the columns to pivot on and the values to display in the new columns

    • Aggregate functions like SUM, AVG, COUNT can be used with PIVOT

    • Example: SELECT * FROM table_name PIVOT (SUM(value_column) FOR pivot_column IN ('value1', 'value2', 'value3'))

  • Answered by AI
  • Q2. Slow changing dimensions
  • Q3. Dynamic rankx top 3
  • Q4. Field parameters
  • Q5. Stored procedures

Interview Preparation Tips

Interview preparation tips for other job seekers - They don't have proper interviewer they were rude and show bad attitude to the candidates.

Better avoid this company

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Apr 2021. There were 4 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. What is scope of variable in perl.
  • Ans. 

    Scope of variable in Perl determines where the variable can be accessed.

    • Perl has three types of variable scope: global, local, and lexical.

    • Global variables can be accessed from anywhere in the program.

    • Local variables are declared using the 'my' keyword and can only be accessed within the block they are declared in.

    • Lexical variables are declared using the 'state' keyword and can be accessed within the block they are dec...

  • Answered by AI
  • Q2. Perl logic questions.
  • Q3. Perl regex questions
  • Q4. Perl module question
  • Q5. Grep and map function
  • Q6. What is hash and array in perl
  • Ans. 

    Hash is a data structure that stores data in key-value pairs while array is an ordered list of scalar values.

    • Hashes are denoted by % symbol and arrays by @ symbol in Perl.

    • Hashes are useful for storing and retrieving data quickly based on a unique key.

    • Arrays can be accessed using index numbers starting from 0.

    • Both hashes and arrays can store different data types such as strings, numbers, and references.

    • Example: %hash = ...

  • Answered by AI
  • Q7. What is CDATA in XML.
  • Ans. 

    CDATA is a way to include special characters in XML data without causing parsing errors.

    • CDATA stands for Character Data

    • It is used to include data that contains characters that would otherwise be interpreted as XML markup

    • CDATA is enclosed in tags

    • Example: bold text]]>

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - No. Everything is good.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
Selected Selected

I applied via Naukri.com and was interviewed in Aug 2023. There were 4 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. Explain oops concepts, difference b/w abstraction and interface,MVC architecture,stored procedure,joins
  • Ans. 

    OOPs concepts, abstraction vs interface, MVC architecture, stored procedures, joins

    • OOPs concepts include inheritance, polymorphism, encapsulation, and abstraction

    • Abstraction is hiding the implementation details while interface is a contract that defines the methods that a class must implement

    • MVC architecture separates the application into Model, View, and Controller components for better organization and maintenance

    • Sto...

  • Answered by AI
Round 3 - Coding Test 

SQL queries, ddl,dml TCL commands, primary key and foreign key differences,what is composite key,hash table in c#,generics in c#.

Round 4 - HR 

(1 Question)

  • Q1. Salary discussion,
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

Epsilon Interview FAQs

How many rounds are there in Epsilon Senior Software Engineer interview?
Epsilon interview process usually has 2 rounds. The most common rounds in the Epsilon interview process are Technical, HR and One-on-one Round.
How to prepare for Epsilon Senior Software Engineer 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 Python, Automation Testing, Javascript, SQL and HTML.
What are the top questions asked in Epsilon Senior Software Engineer interview?

Some of the top questions asked at the Epsilon Senior Software Engineer interview -

  1. Javascript using async/await with try catch bl...read more
  2. Question based on your experience. Mine was mostly design questions on AWS and ...read more
  3. Oops concepts, angular, SQL, design patterns questi...read more

Tell us how to improve this page.

Epsilon Senior Software Engineer Interview Process

based on 4 interviews

1 Interview rounds

  • Technical Round
View more

Interview Questions from Similar Companies

R.R. Donnelley Interview Questions
3.9
 • 102 Interviews
Publicis Interview Questions
3.6
 • 52 Interviews
Regalix Interview Questions
2.9
 • 45 Interviews
Xdbs Interview Questions
3.2
 • 39 Interviews
Groupm Media Interview Questions
3.9
 • 35 Interviews
Smollan Group Interview Questions
4.1
 • 34 Interviews
Mediamint Interview Questions
3.4
 • 32 Interviews
View all
Epsilon Senior Software Engineer Salary
based on 338 salaries
₹8.5 L/yr - ₹31 L/yr
36% more than the average Senior Software Engineer Salary in India
View more details

Epsilon Senior Software Engineer Reviews and Ratings

based on 45 reviews

3.9/5

Rating in categories

3.4

Skill development

3.7

Work-life balance

3.6

Salary

3.8

Job security

3.8

Company culture

3.1

Promotions

3.3

Work satisfaction

Explore 45 Reviews and Ratings
Senior Software Engineer

Bangalore / Bengaluru

5-8 Yrs

₹ 13.64-28 LPA

Senior Software Engineer

Bangalore / Bengaluru

8-13 Yrs

Not Disclosed

Senior Software Engineer

Bangalore / Bengaluru

8-13 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
338 salaries
unlock blur

₹8.5 L/yr - ₹31 L/yr

Software Engineer2
176 salaries
unlock blur

₹6.1 L/yr - ₹18 L/yr

Software Engineer
168 salaries
unlock blur

₹3.8 L/yr - ₹16.1 L/yr

Senior Developer
152 salaries
unlock blur

₹8.9 L/yr - ₹25.2 L/yr

Campaign Analyst
145 salaries
unlock blur

₹4.4 L/yr - ₹10 L/yr

Explore more salaries
Compare Epsilon with

R.R. Donnelley

3.9
Compare

Smollan Group

4.1
Compare

ChannelPlay

3.8
Compare

Affinity Express

3.0
Compare
Did you find this page helpful?
Yes No
write
Share an Interview