Upload Button Icon Add office photos

Filter interviews by

Eunimart Interview Questions and Answers

Updated 30 Apr 2023

Eunimart Interview Experiences

Popular Designations

2 interviews found

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

I applied via Campus Placement and was interviewed in Feb 2023. 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 - Aptitude Test 

160 mcq wuestions on cse subjects

Round 3 - One-on-one 

(2 Questions)

  • Q1. 2 pointer approch for middle element
  • Ans. 

    Two pointer approach to find middle element of a linked list.

    • Initialize two pointers, one slow and one fast, both pointing to the head of the linked list.

    • Move the slow pointer one step at a time and the fast pointer two steps at a time.

    • When the fast pointer reaches the end of the linked list, the slow pointer will be pointing to the middle element.

  • Answered by AI
  • Q2. Linkedlist usage and reverse

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare fundamentals of your subject and be good with your project

Skills evaluated in this interview

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)
Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Mar 2023. 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 - Coding Test 

Mainly focuses on data structures

Round 3 - One-on-one 

(1 Question)

  • Q1. Describe about backend technologies and data structures
  • Ans. 

    Backend technologies refer to the server-side technologies used to develop and maintain web applications.

    • Backend technologies include programming languages such as Java, Python, Ruby, and PHP.

    • Data structures used in backend development include arrays, linked lists, stacks, and queues.

    • Backend technologies also involve the use of databases such as MySQL, MongoDB, and Oracle.

    • Backend developers also use frameworks such as ...

  • Answered by AI

Skills evaluated in this interview

Associate Systems Engineer Interview Questions asked at other Companies

Q1. Given string/sentence need to be reversed and the vowels need to be replaced with numbers from 1-9.In the reversed string replaced numbers should appear in descending order from left to right .If there are more than 9 vowels , numbering sho... read more
View answer (2)

Interview questions from similar companies

Intern Interview Questions & Answers

Paytm Mall user image Monu Singh Yadav

posted on 22 Nov 2024

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

Very impressive able to solve 100 coding questions within 10 mins

Round 2 - Technical 

(2 Questions)

  • Q1. Find min in array
  • Ans. 

    Find the minimum string in an array of strings.

    • Iterate through the array and compare each string to find the minimum.

    • Use a built-in function like sort() to sort the array and then return the first element.

    • Consider using a loop to compare each element with the current minimum.

  • Answered by AI
  • Q2. Find max in array
  • Ans. 

    Find the maximum value in an array of strings.

    • Convert the strings to numbers if needed before finding the maximum value.

    • Use a loop to iterate through the array and compare each element to find the maximum value.

  • Answered by AI

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Coding Test 

Some coding question about optimization algorthim

Interview Preparation Tips

Interview preparation tips for other job seekers - Leecode should be consider
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic array question
Round 2 - Technical 

(1 Question)

  • Q1. Find the first circular tour that visits all petrol pumps
  • Ans. 

    The first circular tour that visits all petrol pumps can be found using the concept of a circular linked list.

    • Create a circular linked list with each node representing a petrol pump

    • Calculate the difference between petrol available at each pump and the distance to the next pump

    • Start from a pump where the sum of differences is positive and traverse the circular linked list until completing the tour

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Oct 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

First round was a aptitude test of 25 question

Round 2 - Technical 

(2 Questions)

  • Q1. Oops concept in java
  • Ans. 

    Oops concept in Java refers to Object-Oriented Programming principles like inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance allows a class to inherit properties and behavior from another class.

    • Encapsulation involves bundling data and methods that operate on the data into a single unit.

    • Polymorphism allows objects to be treated as instances of their parent class.

    • Abstraction hides the implementation d...

  • Answered by AI
  • Q2. Basic multi threading questions
Round 3 - Technical 

(2 Questions)

  • Q1. Code to make a pattern and explain each and every line of code
  • Ans. 

    Code to create a pattern and explain each line of code

    • Start by defining the number of rows and columns in the pattern

    • Use nested loops to iterate through each row and column

    • Decide the pattern you want to create and use conditional statements to determine the output for each position

  • Answered by AI
  • Q2. Puzzle: In how many minimum cut u can cut a cake in 8 piece

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Basic SQL question.
  • Q2. Order of execution
  • Ans. 

    The order of execution refers to the sequence in which instructions or operations are executed in a program.

    • The order of execution is determined by the programming language and the specific code being executed.

    • Generally, code is executed line by line from top to bottom.

    • However, there are exceptions such as loops, conditionals, and function calls that can alter the order of execution.

    • In some programming languages, there...

  • Answered by AI
  • Q3. Window functions
  • Q4. Aggregate functions

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Level order tree traversal
  • Q2. Find the pair element from the array
  • Ans. 

    Find the pair element from the array

    • Iterate through the array and use a hashmap to store elements and their counts

    • Check if the current element's complement exists in the hashmap

    • Return the pair if found, otherwise return null

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Jan 2024. There was 1 interview round.

Round 1 - Aptitude Test 

We had an aptitude test which involved 60 questions in 15 minutes. Of course, no one can solve this fast, but it was about the hit rate / accuracy and volume. Subsequent followed with two guesstimate based rounds and final as HR round which involved asking about college projects, extra curricular experiences and so on.

I applied via Campus Placement and was interviewed in Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Mostly questions were asked from sql,joins were more focussed
  • Q2. Puzzle mostly from gfg were asked involving analytics skills
  • Q3. Guesstimates could also be asked.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, Sql is must,Be logical and work on analytical thinking.

Eunimart Interview FAQs

How many rounds are there in Eunimart interview?
Eunimart interview process usually has 3 rounds. The most common rounds in the Eunimart interview process are Resume Shortlist, One-on-one Round and Aptitude Test.
How to prepare for Eunimart 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 Eunimart. The most common topics and skills that interviewers at Eunimart expect are Algorithms, Data Structures, E-commerce, Marketing and Digital Marketing.
What are the top questions asked in Eunimart interview?

Some of the top questions asked at the Eunimart interview -

  1. Describe about backend technologies and data structu...read more
  2. 2 pointer approch for middle elem...read more
  3. linkedlist usage and reve...read more

Tell us how to improve this page.

Eunimart Interview Process

based on 2 interviews

Interview experience

2.5
  
Poor
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
Reliance Retail Interview Questions
3.9
 • 1.5k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
Tata Group Interview Questions
4.2
 • 358 Interviews
Snapdeal Interview Questions
3.8
 • 75 Interviews
Shopclues Interview Questions
3.9
 • 9 Interviews
Alibaba Group Interview Questions
4.1
 • 7 Interviews
Paytm Mall Interview Questions
3.6
 • 7 Interviews
View all

Eunimart Reviews and Ratings

based on 21 reviews

2.6/5

Rating in categories

3.5

Skill development

2.3

Work-life balance

2.3

Salary

2.4

Job security

2.4

Company culture

2.1

Promotions

2.9

Work satisfaction

Explore 21 Reviews and Ratings
Software Developer
24 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Financial Controller
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Manager
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Backend Developer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Eunimart with

Indiamart Intermesh

3.6
Compare

Alibaba Group

4.1
Compare

Amazon

4.1
Compare

Flipkart

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