Upload Button Icon Add office photos

Filter interviews by

Epsilon DOT NET Developer Interview Questions and Answers for Freshers

Updated 8 Nov 2022

Epsilon DOT NET Developer Interview Experiences for Freshers

1 interview found

I applied via Company Website and was interviewed in May 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 - Aptitude Test 

Be practice at apptitude reasoning

Round 3 - Coding Test 

Have good skills at coding and it's useful for your future

Round 4 - Technical 

(1 Question)

  • Q1. What is java, collection frame work
  • Ans. 

    Java is a programming language and Collection Framework is a set of classes and interfaces used to store and manipulate groups of objects.

    • Java is an object-oriented programming language used to develop applications for various platforms.

    • Collection Framework provides interfaces like List, Set, and Map to store and manipulate groups of objects.

    • Examples of Collection Framework classes are ArrayList, HashSet, and HashMap.

  • Answered by AI
Round 5 - Technical 

(1 Question)

  • Q1. Here to ask logical and coding questions

Interview Preparation Tips

Topics to prepare for Epsilon DOT NET Developer interview:
  • Self introduction
Interview preparation tips for other job seekers - Be practice on apptitude reasoning and u have to develop ur coding skills

Skills evaluated in this interview

DOT NET Developer Jobs at Epsilon

View all

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Technology questions were asked as per experience
Round 2 - HR 

(1 Question)

  • Q1. Hr related questions were asking more of behaviourial

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 mins
Round difficulty - Medium

It was the online MCQ round of 90mins and the web cam was on screen was shared and everything was being checked properly where questions related to quant , Ds, oops, java , html was there.

  • Q1. Basic Interview Questions

    It is a automata question in which you have to make the solution of the coding.

Round 2 - Coding Test 

(2 Questions)

Round duration - 120mins
Round difficulty - Hard

It was a coding round of 120 mins where 2 types of question were given which were hard to solve and it was language specified that is we have to do it in java only.

  • Q1. Minimum Cost to Buy Oranges

    You are given a bag of size 'W' kg and provided with the costs of packets with different weights of oranges as a list/array with the name 'cost'. Every i-th posi...

  • Ans. Recursive Approach

    Write a recursive function minCostToBuyOrangesHelper(idx, requiredWeight, n) to return the Minimum cost to buy exactly requiredWeight Kg oranges with (idx+1) Kg to N kg packets.

    1. Our minimum cost for weight W will be : minCostToBuyOrangesHelper(idx, W, n)
    2. Now at any instant (idx, requiredWeight, n), we have two options:
      1. The option of taking this packet:
    cost[idx] + minCostToBuyOrangesHelper(idx, requiredWe...
  • Answered by CodingNinjas
  • Q2. Segregate Odd-Even

    There is a wedding ceremony at NinjaLand. The bride and groom want everybody to play a game and thus, they have blindfolded the attendees. The people from the bride’s side are holding od...

  • Ans. Iterative Approach 1

    As we have to arrange the nodes such that all the odd nodes should come before all the even nodes, we can move all the even valued nodes from their current positions to the end of the linked list. 

     

    Algorithm:

     

    • Initialise a pointer ‘LAST_NODE’ by NULL.
    • Traverse the linked list to the end and get the last node of the list which will be pointed by ‘LAST_NODE’.
    • Initialize a pointer ‘NEW_END’...
  • Answered by CodingNinjas
Round 3 - Video Call 

(1 Question)

Round duration - 30mins
Round difficulty - Medium

It was the interview round where zoom meeting was done of 30 mins and all the questions were being asked. How properly were be dressed was seen. The environment where we are giving the interview should be silent.

  • Q1. Basic OS Questions

    What is OS?
    What is virtual memory?
    What is round robin?

Round 4 - Video Call 

(2 Questions)

Round duration - 40mins
Round difficulty - Easy

It was the 2 technical interview were I was asked about the projects, the technical knowledge and the work I have done during my graduation.

  • Q1. All prime numbers

    You are given a positive integer 'N'. Your task is to return all the prime numbers less than or equal to the 'N'.

    Note:

    1) A prime number is a number that has only two ...
  • Ans. Brute Force Approach

    The idea here is to check every number less than or equal to N is prime or not. Those who are prime just add them in an array and return the array at the end of the function.

     

    • Create an empty array named as 'RESULT' to store the prime numbers.
    • Run a loop with variable ‘i’ from 2 to ‘N’ and in each iteration do:
      • Check whether ‘i’ is prime or not, call the function 'IS_PRIME'(i), which has a return ...
  • Answered by CodingNinjas
  • Q2. Linear Search

    You have been given a random integer array/list(ARR) of size N, and an integer X. You need to search for the integer X in the given array/list using 'Linear Search'.

     You have been ...

  • Ans. Space Complexity: O(1)Explanation: Time Complexity: O(1)Explanation:
  • Answered by CodingNinjas
Round 5 - HR 

(1 Question)

Round duration - 30 mins
Round difficulty - Medium

It was the HR round where HR asked questions related to the resume and the management things.

  • Q1. Basic HR Questions

    Who is your role model?

    Where do you see yourself in five years?

  • Ans. 

    Tip 1 : Be patient.
    Tip 2 : Dress properly in the formals.
    Tip 3 : Be confident and careful about what you say

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from GLA University. I applied for the job as SDE - 1 in PuneEligibility criteria65 and aboveWipro Limited interview preparation:Topics to prepare for the interview - Java /C++, Oops Concept, Data structure and Algorithms, Html / CSS/SQL/ Mongo Db, Machine Learning, Quant and reasoning, Coding of Dynamic ProgrammingTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Study hard practice more and don't waste time.
Tip 2 : Be confident while giving the interview.
Tip 3 : Always believe in one thing that "YOU CAN YOU WILL YOU WIN"

Application resume tips for other job seekers

Tip 1 : Write those things on your resume which you know in the technical part don't put false things.
Tip 2 : Always write the projects in the resume which you have made on the technology which you know.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed in Dec 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 70 minutes
Round difficulty - Easy

  • Q1.  Longest Common Subsequence

    You have been given two Strings “STR1” and “STR2” of characters. Your task is to find the length of the longest common subsequence.

    A String ‘a’ is a subsequence of a String ‘...

  • Ans. Recursive Brute Force

    The basic idea of this approach is to break the original problem into sub-problems. Let us assume we want to find the length of the longest common subsequence of “STR1” and “STR2” whose length is ‘N’ and ‘M’ respectively. 

     

    Now, let us define a recursive function 

     

    LCS(Int I, int J, string STR1, string STR2)

    Which returns the length of the longest common subsequence of string STR1...

  • Answered by CodingNinjas
  • Q2.  Merge Sort

    Given a sequence of numbers ‘ARR’. Your task is to return a sorted sequence of ‘ARR’ in non-descending order with help of the merge sort algorithm.

    Example :

    Merge Sort Algorithm -
    
    Merge so...
  • Ans. Recursion

    The basic idea is that we divide the given ‘ARR’ into two-part call them ‘leftHalves’ and ‘rightHalves’ and call the same function again with both the parts. In the end, we will get sorted ‘leftHaves’ and sorted ‘righthalves’ which we merge both of them and return a merged sorted ‘ARR’.

    We implement this approach with a divide and conquer strategy.

     

    Here is the algorithm : 

     

    1. Divide ‘ARR’ into two-p...
  • Answered by CodingNinjas
Round 2 - Video Call 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

  • Q1. General Questions

    It was easy he(interviewer) just gave me some situations and want to check my logical and lastly he asked me about myself.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Dronacharya College of Engineering. Eligibility criteriano criteriaWipro Limited interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Practice Atleast 250 Questions
Tip 2 : Do atleast 2 projects
 

Application resume tips for other job seekers

Tip 1 : Have some projects on resume.
Tip 2 : Do not put false things on resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 40 minutes
Round difficulty - Medium

It was in the morning invigilators are there for any discrepancy or doubt. Questions were mostly from aptitude and coding based. Level of questions were moderate difficulty.

  • Q1. Count Subsequences

    You have been given an integer array/list 'ARR' of size 'N'. Your task is to return the total number of those subsequences of the array in which all the elements are equa...

  • Ans. Brute Force

    The idea is to generate all the subsequences and check whether the elements present are equal or not.

     

    Here is the algorithm :

     

    1. Generate all the subsequences of the given array.
    2. Maintain a variable ‘COUNT’ which stores the total number of subsequences in which all the elements are equal.
    3. Iterate over each of the generated subsequences.
      1. In case all the elements of the current subsequence are equal, we in...
  • Answered by CodingNinjas
Round 2 - Group Discussion 

(1 Question)

Round duration - 20 minutes
Round difficulty - Medium

It was in the afternoon. At least 5-6 students were there for the discussion on the topic Data Structures.

  • Q1. Maximum Difference

    You are given an array 'ARR' of the 'N' element. Your task is to find the maximum difference between any of the two elements from 'ARR'.

    If the maximum differen...

  • Ans. Find Max And Min

    We will iterate over ARR and find the MAX and MIN of the ARR. And if the MAX - MIN is odd the return “ODD” else return "EVEN". 

    The algorithm will be-

    1. MAX = -1, MIN= 10 ^ 9 + 1
    2. For VAL in ARR.
      1. If MAX < VAL
        1. MAX = VAL
      2. If MIN > VAL
        1. MIN = VAL
    3. IF (MAX-MIN) % 2
      1. Return ODD
    4. ELSE
      1. Return EVEN
    Space Complexity: O(1)Explanation:

    O(1).

     

    Since constant space is used.

    Time Complexity: O(n)Explanation:

    O(N), where N ...

  • Answered by CodingNinjas
Round 3 - HR 

(1 Question)

Round duration - 15 minutes
Round difficulty - Easy

It was in the evening. The interviewer was very calm and friendly nature and he created very interesting environment between us. Questions asked were not very tough and was easy to answer if listen properly.

  • Q1. Basic HR Questions

    Tell me something about yourself in brief
    Where do you see yourself 3 years from now? or Where do you see yourself in 5 years?
    Why do you want to work for us or our company? or Why do you w...

  • Ans. 

    Tip 1 : Listen the questions carefully then answer them.
    Tip 2 : Voice should be loud and clear and think before you speak
    Tip 3 : Don't get nervous or hesitate while giving answer

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Developer in DelhiEligibility criteriaCo cubesWipro Limited interview preparation:Topics to prepare for the interview - Data Structures, OOPS, Aptitude, Output Based Questions, SQL and Algorithms, Data ScienceTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Practice aptitude as much as you can after analyzing previous year question papers
Tip 2 : Do projects and assignments related to what your company most focussing
Tip 3 : Practice output based questions as much as you can from trusted websites

Application resume tips for other job seekers

Tip 1 : Resume should look nice and you should be confident on each skill you have mentioned.
Tip 2 : Do more and more projects from some trusted and reputed institute it will create a great impact on recruiter
Tip 3 : Do not mix and match the skills repeatedly as it will not look nice.

Final outcome of the interviewRejected

Skills evaluated in this interview

I was interviewed in Nov 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 40 minutes
Round difficulty - Medium

It was early morning around 9:00AM-9:30AM. Questions was mostly from aptitude and coding based. Level of questions were moderate.

  • Q1. Count Subsequence

    You have been given an integer array/list 'ARR' of size 'N'. Your task is to return the total number of those subsequences of the array in which all the elements are equal...

  • Ans. Brute Force

    The idea is to generate all the subsequences and check whether the elements present are equal or not.

     

    Here is the algorithm :

     

    1. Generate all the subsequences of the given array.
    2. Maintain a variable ‘COUNT’ which stores the total number of subsequences in which all the elements are equal.
    3. Iterate over each of the generated subsequences.
      1. In case all the elements of the current subsequence are equal, we in...
  • Answered by CodingNinjas
  • Q2. Minimum Operations

    You are given an array 'ARR' of 'N' positive integers. You need to find the minimum number of operations needed to make all elements of the array equal. You can perform a...

  • Ans. 

    The minimum number of operations needed to make all elements of the array equal by performing addition, multiplication, subtraction, or division on any element.

    • Iterate through the array and find the maximum and minimum values

    • Calculate the difference between the maximum and minimum values

    • Check if the difference is divisible by the length of the array

    • If divisible, return the difference divided by the length

    • If not divisib...

  • Answered by AI
Round 2 - HR 

(1 Question)

Round duration - 20 minutes
Round difficulty - Easy

It was late night. Interviewer was asking tricky questions to confuse me. This round is probing to personality rather than practical knowledge.

  • Q1. Basic HR Questions

    Tell Me About a Time You Failed.

    What Are You Passionate About?

  • Ans. 

    Tip 1 : Try to keep yourself calm
    Tip 2 : Be natural while giving your interview
    Tip 3 : Think before you speak

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Developer in DelhiEligibility criteriaCo cubesWipro Limited interview preparation:Topics to prepare for the interview - Data Structures, Aptitude, OOPS, Algorithms, Output Based Questions, Data ScienceTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice much more on coding or output based questions from trusted website
Tip 2 : Make sure your resume look skill full and nice
Tip 3 : Avoid any hesitation in interview while giving answers

Application resume tips for other job seekers

Tip 1 : Try to attach any specific skill with authorized certificate from good coding platform like Coding Ninja
Tip 2 : Make sure the skills you have mentioned you should have full confidence in them.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Company Website and was interviewed in Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. How much salary I expected and when will start my work?
  • Q2. How will start my work?
  • Q3. Where is our company located?
  • Q4. If any bond period is there are not?
  • Ans. 

    It depends on the company and the job offer. Some companies have bond periods while others don't.

    • Bond periods are contractual agreements between the employer and employee.

    • They usually require the employee to work for a certain period of time before leaving the company.

    • Bond periods can vary in length and may have financial penalties for breaking the contract.

    • Not all companies have bond periods, so it's important to chec...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - This interview was a technical one but it is good purpose for test and the interview to both test and knowledge and communication skills. Most of the questions were asked for related to my b.tech curriculum i.e computer Science topics.luckly i was able to answer all questions correctly.It was my first off campus interview and I think I did pretty well for fresher.

I was interviewed in Dec 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 40 minutes
Round difficulty - Easy

  • Q1. Count Subsequences

    You have been given an integer array/list 'ARR' of size 'N'. Your task is to return the total number of those subsequences of the array in which all the elements are equa...

  • Ans. Brute Force

    The idea is to generate all the subsequences and check whether the elements present are equal or not.

     

    Here is the algorithm :

     

    1. Generate all the subsequences of the given array.
    2. Maintain a variable ‘COUNT’ which stores the total number of subsequences in which all the elements are equal.
    3. Iterate over each of the generated subsequences.
      1. In case all the elements of the current subsequence are equal, we in...
  • Answered by CodingNinjas

Interview Preparation Tips

Eligibility criteriaNoWipro Limited interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Do practice as much as you can
Tip 2 : Coding is key to crack

Application resume tips for other job seekers

Tip 1 : It should look nice
Tip 2 : Skills should be mentioned properly

Final outcome of the interviewRejected

Skills evaluated in this interview

I applied via Company Website and was interviewed in Mar 2021. There were 6 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Wt are searching techniques
  • Ans. 

    Searching techniques are methods used to find specific data or information within a larger set of data.

    • Linear search

    • Binary search

    • Hashing

    • Depth-first search

    • Breadth-first search

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be keen about topic wt u have learned

Skills evaluated in this interview

I applied via Company Website and was interviewed in Jul 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Java python

Interview Preparation Tips

Interview preparation tips for other job seekers - Python

Epsilon Interview FAQs

How many rounds are there in Epsilon DOT NET Developer interview for freshers?
Epsilon interview process for freshers usually has 5 rounds. The most common rounds in the Epsilon interview process for freshers are Technical, Resume Shortlist and Aptitude Test.
How to prepare for Epsilon DOT NET Developer interview for freshers?
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 Agile, JSON, Key Account Management, Salesforce and User management.
What are the top questions asked in Epsilon DOT NET Developer interview for freshers?

Some of the top questions asked at the Epsilon DOT NET Developer interview for freshers -

  1. What is java, collection frame w...read more
  2. Here to ask logical and coding questi...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Epsilon interview
Company Website
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Epsilon DOT NET Developer Salary
based on 4 salaries
₹4.5 L/yr - ₹12 L/yr
44% more than the average DOT NET Developer Salary in India
View more details
Dot Net Developer

Bangalore / Bengaluru

3-8 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
334 salaries
unlock blur

₹9.7 L/yr - ₹29.7 L/yr

Software Engineer
165 salaries
unlock blur

₹3.8 L/yr - ₹15.2 L/yr

Senior Developer
159 salaries
unlock blur

₹9 L/yr - ₹29.4 L/yr

Software Engineer2
158 salaries
unlock blur

₹5.2 L/yr - ₹18.3 L/yr

Campaign Analyst
138 salaries
unlock blur

₹4.5 L/yr - ₹10 L/yr

Explore more salaries
Compare Epsilon with

Mu Sigma

2.7
Compare

Fractal Analytics

4.0
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview