Upload Button Icon Add office photos

Epsilon

Compare button icon Compare button icon Compare

Filter interviews by

Epsilon Technical Support Engineer Interview Questions and Answers

Updated 10 Dec 2021

Epsilon Technical Support Engineer Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed in Nov 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Mostly it was behavioral questions
  • Q2. Tell about yourself/family
  • Ans. 

    I'm a dedicated Technical Support Engineer with a passion for problem-solving and a supportive family that inspires me daily.

    • I have a background in computer science, which helps me troubleshoot technical issues effectively.

    • My family includes my spouse and two children, who motivate me to balance work and personal life.

    • I enjoy outdoor activities with my family, like hiking and biking, which helps me recharge.

    • I have a pe...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good communication and prepare about the job you were applying

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
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

Technical Support Engineer Interview Questions Asked at Other Companies

asked in Salesforce
Q1. Admin Questions :- What is Relationships what are types of relati ... read more
asked in Zoho
Q2. Write an email to a customer apologizing for a mistake made by a ... read more
asked in Movate
Q3. What is the difference between WAN and LAN?
Q4. What steps would you take if a customer called and reported they ... read more
asked in Salesforce
Q5. How would you find the contact information for accounts with name ... read more
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

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,

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.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Nov 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

It consited of apti as well as coding questions

Round 2 - Technical 

(1 Question)

  • Q1. Basic questions of coding were asked like arrays,strings
Are these interview questions helpful?
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Introduce yourself
  • Q2. DS/Ago problem - dynamic programming

Interview Preparation Tips

Interview preparation tips for other job seekers - nothing
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. Check string is pallindrome or not
  • Ans. 

    A palindrome is a string that reads the same forwards and backwards, like 'racecar' or 'level'.

    • Definition: A palindrome is a word, phrase, or sequence that reads the same backward as forward. Examples include 'madam' and '12321'.

    • Ignoring Spaces and Punctuation: When checking for palindromes, spaces and punctuation are often ignored. For instance, 'A man, a plan, a canal, Panama!' is a palindrome.

    • Case Sensitivity: Palin...

  • Answered by AI
  • Q2. Bubble sort explanation

Interview Preparation Tips

Interview preparation tips for other job seekers - nothing

I appeared for an interview in Sep 2022.

Round 1 - Technical 

(1 Question)

  • Q1. Basic about Javascript,HTML,CSS
Round 2 - Technical 

(1 Question)

  • Q1. Design a weather app
  • Ans. 

    A weather app that provides accurate and up-to-date weather information.

    • Include real-time weather updates

    • Provide hourly and daily forecasts

    • Include radar and satellite maps

    • Allow users to set location and receive alerts for severe weather

    • Include a widget for quick access to weather information

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for Javascript,html,css basix and some array string DS

Skills evaluated in this interview

Epsilon Interview FAQs

How to prepare for Epsilon Technical Support 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 Javascript, Python, SQL, Shell Scripting and System integration.

Tell us how to improve this page.

Interview Questions from Similar Companies

R.R. Donnelley Interview Questions
3.8
 • 117 Interviews
Publicis Interview Questions
3.7
 • 54 Interviews
Regalix Interview Questions
2.9
 • 50 Interviews
Xdbs Interview Questions
3.1
 • 39 Interviews
Smollan Group Interview Questions
4.0
 • 39 Interviews
Groupm Media Interview Questions
3.8
 • 37 Interviews
Mediamint Interview Questions
3.3
 • 35 Interviews
View all
Epsilon Technical Support Engineer Salary
based on 7 salaries
₹5 L/yr - ₹11 L/yr
47% more than the average Technical Support Engineer Salary in India
View more details
Senior Software Engineer
405 salaries
unlock blur

₹16.9 L/yr - ₹29.8 L/yr

Software Engineer2
193 salaries
unlock blur

₹5.2 L/yr - ₹18 L/yr

Software Engineer
172 salaries
unlock blur

₹5.9 L/yr - ₹14 L/yr

Senior Developer
160 salaries
unlock blur

₹9.9 L/yr - ₹29.4 L/yr

Campaign Analyst
145 salaries
unlock blur

₹4.9 L/yr - ₹10 L/yr

Explore more salaries
Compare Epsilon with

R.R. Donnelley

3.8
Compare

Smollan Group

4.0
Compare

ChannelPlay

3.8
Compare

Affinity Express

3.0
Compare
write
Share an Interview