Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Eshopbox Ecommerce Team. If you also belong to the team, you can get access from here

Eshopbox Ecommerce Verified Tick

Compare button icon Compare button icon Compare
3.2

based on 94 Reviews

Filter interviews by

Eshopbox Ecommerce Interview Questions, Process, and Tips

Updated 17 Jan 2025

Top Eshopbox Ecommerce Interview Questions and Answers

View all 14 questions

Eshopbox Ecommerce Interview Experiences

Popular Designations

13 interviews found

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

I was interviewed in Dec 2024.

Round 1 - Coding Test 

Core Java, Spring boot, Hibernate, MySQL

Round 2 - One-on-one 

(2 Questions)

  • Q1. Technical Questions
  • Q2. Logic Problems
Round 3 - One-on-one 

(2 Questions)

  • Q1. Logic Problems solving (face to face interview)
  • Q2. Personality check

Interview Preparation Tips

Interview preparation tips for other job seekers - The candidate who are strong in tech and get the opportunity!

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (40)

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 19 Dec 2024

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

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

Round 1 - Coding Test 

SQL -- LeetCode style questions Medium lvl

Round 2 - Behavioral 

(2 Questions)

  • Q1. Past experiences
  • Q2. How one can help with eshopbox
  • Ans. 

    One can help with eshopbox by analyzing data to improve customer experience and optimize sales.

    • Conduct data analysis to identify trends and patterns in customer behavior

    • Use data to personalize marketing strategies and recommend products to customers

    • Optimize website layout and user experience based on data insights

    • Implement data-driven pricing strategies to maximize sales and profits

  • Answered by AI

Data Analyst Interview Questions asked at other Companies

Q1. Suppose there is a room in the office and X people enter room throughout the day, Y people leave throughout the day [continuously people are entering the room, some are staying there, and rest are going out] .. so tell me the code to calcul... read more
View answer (11)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Aptitude Test 

Online test conducted

Round 2 - HR 

(3 Questions)

  • Q1. Introduction about me
  • Q2. Last company work
  • Ans. 

    I worked as an Accounts Manager at XYZ Company for 3 years.

    • Managed a team of 5 accountants to ensure accurate financial reporting

    • Implemented new accounting software to streamline processes

    • Prepared monthly financial statements and reports for senior management

    • Collaborated with auditors during annual audits

    • Reduced outstanding accounts receivable by 15% through improved collection strategies

  • Answered by AI
  • Q3. Reason of leavjng
  • Ans. 

    Seeking new challenges and growth opportunities.

    • Desire for career advancement

    • Looking for new challenges

    • Seeking growth opportunities

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Meet with CA , asked about my work experiance and question about e commerce accounting.

Accounts Manager Interview Questions asked at other Companies

Q1. Tell me an analysis about how to factor customer or prospects for your product segment
View answer (5)

Sde1 Interview Questions & Answers

user image Anonymous

posted on 4 Jun 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How Indexing works in DB
  • Ans. 

    Indexing in DB is a technique to improve the speed of data retrieval by creating a data structure that allows for quick lookup of data.

    • Indexes are created on columns in a database table to speed up the retrieval of rows that match a certain condition.

    • Types of indexes include B-tree, hash, and bitmap indexes.

    • Indexes can be unique or non-unique, clustered or non-clustered.

    • Example: Creating an index on the 'email' column ...

  • Answered by AI
  • Q2. Spring Boot depenencies
Round 2 - One-on-one 

(2 Questions)

  • Q1. System Design of Bookmyshow
  • Ans. 

    Bookmyshow is a popular online ticketing platform for movies, events, and other entertainment.

    • Bookmyshow allows users to browse and book tickets for movies, events, plays, sports, etc.

    • The system should have features like seat selection, payment gateway integration, booking history, and notifications.

    • Scalability is important to handle high traffic during popular movie releases or events.

    • Integration with cinema partners ...

  • Answered by AI
  • Q2. Some SQL queries to write

Skills evaluated in this interview

Sde1 Interview Questions asked at other Companies

Q1. DSA and Language Questions: 1. Difference between Arrays and ArrayList in Java. 2. Queue Implementation using Linked List. 3. BST- How would you fill a BST with a sorted array. 4. Random pointer linked-list clone. 5. Fibonacci number genera... read more
View answer (1)

Eshopbox Ecommerce interview questions for popular designations

 Sde1

 (3)

 Software Developer

 (3)

 Accounts Manager

 (1)

 Angular Developer

 (1)

 Data Analyst

 (1)

 Executive Accountant

 (1)

 HR Specialist 2

 (1)

 QA Engineer

 (1)

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

I applied via Naukri.com

Round 1 - Technical 

(5 Questions)

  • Q1. Write a js code to reverse a string.
  • Ans. 

    Use JavaScript to reverse a given string.

    • Create a function that takes a string as input

    • Use the split(), reverse(), and join() methods to reverse the string

    • Return the reversed string

  • Answered by AI
  • Q2. Write a js code fizz bizz
  • Ans. 

    FizzBuzz is a common coding challenge where numbers divisible by 3 are replaced with 'Fizz', numbers divisible by 5 are replaced with 'Buzz', and numbers divisible by both are replaced with 'FizzBuzz'.

    • Create a loop to iterate through numbers 1 to 100

    • Use if statements to check if the number is divisible by 3, 5, or both

    • Replace the number with 'Fizz', 'Buzz', or 'FizzBuzz' accordingly

  • Answered by AI
  • Q3. Angular life cycle hooks
  • Q4. What is Dependency Injection in angular?
  • Ans. 

    Dependency Injection is a design pattern in which a class receives its dependencies from an external source rather than creating them itself.

    • In Angular, Dependency Injection is used to provide instances of services to components.

    • It helps in creating loosely coupled components, making the code more maintainable and testable.

    • Example: In Angular, you can inject services like HttpClient, Router, etc. into components using

  • Answered by AI
  • Q5. What are the Directives in angular?
  • Ans. 

    Directives in Angular are markers on a DOM element that tell Angular to attach a specified behavior to that DOM element or transform the DOM element and its children.

    • Directives are used to extend HTML with new attributes or elements.

    • There are three types of directives in Angular: Component, Structural, and Attribute directives.

    • Examples of built-in directives in Angular include ngIf, ngFor, and ngStyle.

  • Answered by AI

Skills evaluated in this interview

Angular Developer Interview Questions asked at other Companies

Q1. How can you pass data between parent and child components?, what is component interaction
View answer (5)

Get interview-ready with Top Eshopbox Ecommerce Interview Questions

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

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

Round 1 - Assignment 

Questions (situational)

Round 2 - Aptitude Test 

Numeric question and situations

Interview Preparation Tips

Topics to prepare for Eshopbox Ecommerce HR Specialist 2 interview:
  • Human Resource Management
  • Recruitment
  • Employee Engagement
Interview preparation tips for other job seekers - Easy going organization

Jobs at Eshopbox Ecommerce

View all

Software Developer Interview Questions & Answers

user image RadhaKanta Swain

posted on 1 Jun 2024

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

(1 Question)

  • Q1. Easy opps and java
Round 2 - Behavioral 

(1 Question)

  • Q1. Puzzles , above myself and sql

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Work experience
  • Q2. Accounting basic questions

Executive Accountant Interview Questions asked at other Companies

Q1. What is P2P cycle , 3 way match , and what will you do if Approvals are missing in case of Non PO Invoices.
View answer (4)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Dec 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 - HR 

(4 Questions)

  • Q1. Self introduction and about educational background.
  • Q2. Some questions regarding my last job .
  • Q3. About my working culture and why do I leave my last job.
  • Q4. Why do I switching from electrical to supply chain analysts
  • Ans. 

    I am switching to supply chain analyst as it aligns better with my career goals and interests.

    • I have always been interested in the logistics and operations side of businesses

    • I have gained experience in data analysis and problem-solving through my electrical background

    • I see a lot of potential for growth and impact in the supply chain field

    • I am excited to apply my skills and knowledge to optimize supply chain processes a

  • Answered by AI
Round 3 - Technical 

(6 Questions)

  • Q1. My role in my last organization.
  • Q2. Basics questions regarding excel, example, v lookup, h look-up, concatenate, pivot table,
  • Q3. About supply chain management.
  • Q4. Reverse and forward chain difference
  • Ans. 

    Reverse chain is the process of returning goods from customer to supplier while forward chain is the process of delivering goods from supplier to customer.

    • Reverse chain involves activities like returns management, refurbishing, and recycling.

    • Forward chain involves activities like procurement, production, and distribution.

    • Reverse chain is initiated by the customer while forward chain is initiated by the supplier.

    • Reverse...

  • Answered by AI
  • Q5. What is ecommerce and types
  • Ans. 

    Ecommerce refers to buying and selling goods or services online.

    • B2B ecommerce involves businesses selling to other businesses

    • B2C ecommerce involves businesses selling to consumers

    • C2C ecommerce involves consumers selling to other consumers

    • Examples include Amazon, eBay, and Etsy

  • Answered by AI
  • Q6. Ask to wite a mail to Flipkart about a query .

Interview Preparation Tips

Interview preparation tips for other job seekers - Naukri is the best portal for job seekers, just thing is that how we can express yourself in front of interviers, my interviers were very polite and good in Nature, so at the end m suggest just keep trying nd your communication must play virtual role.

Skills evaluated in this interview

Supply Chain Analyst Interview Questions asked at other Companies

Q1. What will you do when the product is not arrived in time which is supposed to be launch today and higher officials prepared a grand program to launch it. How do you convince them in this situation and also the product arrives only after 3 d... read more
View answer (1)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is lazyloading
  • Ans. 

    Lazy loading is a design pattern commonly used in software development to defer the loading of non-essential resources until they are actually needed.

    • Lazy loading helps improve performance by only loading resources when they are required.

    • It is commonly used in web development to load images, videos, or other content as the user scrolls down a page.

    • Lazy loading can also be used in database queries to fetch data only whe

  • Answered by AI
  • Q2. What is difference between angularJS and angular 2
  • Ans. 

    AngularJS is the first version of Angular, while Angular 2 is a complete rewrite with improved performance and features.

    • AngularJS is based on JavaScript, while Angular 2 is based on TypeScript.

    • AngularJS uses controllers and $scope for data binding, while Angular 2 uses components and directives.

    • AngularJS has two-way data binding, while Angular 2 has one-way data binding.

    • AngularJS has a digest cycle for change detection...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Puzzle asked from CEO

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

Eshopbox Ecommerce Interview FAQs

How many rounds are there in Eshopbox Ecommerce interview?
Eshopbox Ecommerce interview process usually has 2-3 rounds. The most common rounds in the Eshopbox Ecommerce interview process are Technical, One-on-one Round and HR.
How to prepare for Eshopbox Ecommerce 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 Eshopbox Ecommerce. The most common topics and skills that interviewers at Eshopbox Ecommerce expect are MySQL, E-commerce, Excel, Java and Javascript.
What are the top questions asked in Eshopbox Ecommerce interview?

Some of the top questions asked at the Eshopbox Ecommerce interview -

  1. Why do I switching from electrical to supply chain analy...read more
  2. What is ecommerce and ty...read more
  3. What is difference between angularJS and angula...read more
How long is the Eshopbox Ecommerce interview process?

The duration of Eshopbox Ecommerce interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Eshopbox Ecommerce Interview Process

based on 10 interviews in last 1 year

Interview experience

4.3
  
Good
View more

People are getting interviews through

based on 7 Eshopbox Ecommerce interviews
Job Portal
WalkIn
Referral
71%
14%
14%
1% candidates got the interview through other sources.
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

Cogoport Interview Questions
2.8
 • 51 Interviews
Treebo Hotels Interview Questions
3.3
 • 22 Interviews
Simpl Interview Questions
2.9
 • 16 Interviews
KrazyBee Interview Questions
3.6
 • 14 Interviews
TripFactory Interview Questions
2.0
 • 13 Interviews
EazyDiner Interview Questions
3.2
 • 13 Interviews
Shopify Interview Questions
4.0
 • 3 Interviews
View all

Eshopbox Ecommerce Reviews and Ratings

based on 94 reviews

3.2/5

Rating in categories

3.3

Skill development

2.9

Work-Life balance

3.1

Salary & Benefits

3.2

Job Security

2.9

Company culture

2.9

Promotions/Appraisal

3.1

Work Satisfaction

Explore 94 Reviews and Ratings
Product Manager L-1

Gurgaon / Gurugram

5-8 Yrs

Not Disclosed

Explore more jobs
Product Manager
21 salaries
unlock blur

₹4 L/yr - ₹12 L/yr

Software Development Engineer
17 salaries
unlock blur

₹5.5 L/yr - ₹14.3 L/yr

Software Developer
16 salaries
unlock blur

₹7 L/yr - ₹11 L/yr

Front end Developer
15 salaries
unlock blur

₹3.5 L/yr - ₹9 L/yr

Customer Success Manager
14 salaries
unlock blur

₹5.5 L/yr - ₹9.5 L/yr

Explore more salaries
Compare Eshopbox Ecommerce with

Shopify

4.0
Compare

BigCommerce

2.9
Compare

Shopmatic

4.2
Compare

Shiprocket Private Limited

3.6
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