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

Filter interviews by

Clear (1)

Eshopbox Ecommerce Sde1 Interview Questions and Answers

Updated 4 Jun 2024

Eshopbox Ecommerce Sde1 Interview Experiences

3 interviews found

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 & Answers

user image Anonymous

posted on 24 Dec 2022

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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. Core java, multi-threading, oops, etc.
  • Q2. Get all permutations of an array.
  • Ans. 

    Get all permutations of an array.

    • Use recursion to swap elements and generate permutations

    • Iterate through the array and swap elements at each index

    • Use a set to avoid duplicates

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - read basics related to java and spring microservices

Skills evaluated in this interview

Sde1 Interview Questions Asked at Other Companies

Q1. DSA and Language Questions: 1. Difference between Arrays and Arra ... read more
asked in Park Plus
Q2. 1. What is a doubly-linked list? And real-world applications.
asked in Amazon
Q3. pid ={3,5,0,1} ppid ={5,4,2,2} process id(pid) ppid=parent proces ... read more
Q4. Given one point and circle how will you find if it's inside circl ... read more
asked in Amazon
Q5. N queen problem with problem statement and dry running of code wi ... read more

Sde1 Interview Questions & Answers

user image Anonymous

posted on 24 Oct 2023

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

I applied via Naukri.com and was interviewed before Oct 2022. 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 Resume tips
Round 2 - Coding Test 

2 coding questions will be there

Round 3 - Coding Test 

System design questions will be asked for sde 2

Round 4 - HR 

(1 Question)

  • Q1. Ready to work from office

Interview Preparation Tips

Topics to prepare for Eshopbox Ecommerce Sde1 interview:
  • java 8
  • Java strings
  • project related

Interview questions from similar companies

Sde1 Interview Questions & Answers

Cogoport user image Anonymous

posted on 17 Oct 2024

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Oct 2023.

Round 1 - Aptitude Test 

1 hour long time in hyper loop

Round 2 - Coding Test 

Singularity is not a point in space, it is a moment in time.

Interview Preparation Tips

Interview preparation tips for other job seekers - Singularity is not a point in space, it is a moment in time. S

Sde1 Interview Questions & Answers

Cogoport user image Anonymous

posted on 20 Oct 2023

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

I applied via Campus Placement and was interviewed in Sep 2023. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all Resume tips
Round 2 - Aptitude Test 

Easy questions but less time

Round 3 - Coding Test 

2 easy and 1 hard leet code

Round 4 - One-on-one 

(3 Questions)

  • Q1. Reverse the link list
  • Ans. 

    Reverse a linked list

    • Iterate through the linked list and reverse the pointers

    • Use three pointers - prev, current, next to reverse the links

    • Update the head of the linked list to the last node after reversing

  • Answered by AI
  • Q2. The Hanoi tower problem was given
  • Q3. One DP question was given to explain not write
Round 5 - HR 

(1 Question)

  • Q1. JEE rank and previous paid internship

Interview Preparation Tips

Topics to prepare for Cogoport Sde1 interview:
  • DSA
  • Node.Js
  • React.Js
  • React Native
  • ruby on rails
  • Ruby Rails
Interview preparation tips for other job seekers - PLEASE DON'T JOIN THIS COMPANY specially freshers they will ruin your career

Skills evaluated in this interview

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

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

Round 1 - Aptitude Test 

Basic questions that anyone could answer

Round 2 - Coding Test 

O(N) questions, questions like string reversal etc…

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

I applied via Campus Placement and was interviewed before Mar 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Basic Apti and Behavioural Online Round 15-30 minutes

Round 2 - Coding Test 

1.5 hrs long. 3 Problems Easy to Medium

Round 3 - Technical 

(3 Questions)

  • Q1. Cogoport was mass hiring, so interview was only 30 minutes long. Basic DSA, sorting, and SQL queries.
  • Q2. Merge Sort Algorithm
  • Ans. 

    Merge Sort is a divide and conquer algorithm that divides the input array into two halves, sorts them separately, and then merges them.

    • Divide the array into two halves recursively

    • Sort each half separately using merge sort

    • Merge the sorted halves back together

  • Answered by AI
  • Q3. SQL Query Basic Join
Round 4 - HR 

(1 Question)

  • Q1. 5-7 minutes final HR round

Interview Preparation Tips

Interview preparation tips for other job seekers - Great learning curve as its a startup. BUT Don't go to this company. Mass Hiring => Mass Layoffs. This has been the main ideology of Cogoport since the beginning. Followed by salary cuts of course.

Skills evaluated in this interview

I was interviewed in Dec 2016.

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself tell me about your internship My interview was unstructured(i.e based on your reply interviewer was asking Questions)

Interview Preparation Tips

Round: Test
Experience: Questions were very difficult and solving one Question gets you shortlisted for interview
I don't remember the Questions
Duration: 1 hour 30 minutes
Total Questions: 2

Skills: Internship Work, Inter Person Communication Skills
College Name: IIT Roorkee
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jan 2024. There were 4 interview rounds.

Round 1 - Coding Test 

Machine Coding of Google Calendar

Round 2 - Coding Test 

Machine Coding of MP3 Player

Round 3 - One-on-one 

(1 Question)

  • Q1. Find Duplicates problem
  • Ans. 

    Find duplicates in an array of strings

    • Iterate through the array and store each element in a hash set

    • If an element is already in the hash set, it is a duplicate

    • Return a list of all duplicates found

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Why Simpl? and compensation
  • Ans. 

    Simpl offers a collaborative and innovative work environment with competitive compensation.

    • Simpl values teamwork and creativity in software development

    • Competitive compensation package offered to attract top talent

    • Opportunities for growth and learning through challenging projects

  • Answered by AI

Skills evaluated in this interview

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

It was good , 2 questions are there to code.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Cs fundamental, Projects, coding.
  • Q2. A simple coding question of string using map
Round 3 - Technical 

(2 Questions)

  • Q1. What is React router. what does it do.
  • Ans. 

    React Router is a popular routing library for React applications.

    • React Router is used for handling navigation in React applications.

    • It allows defining multiple routes in the application and rendering different components based on the URL.

    • React Router provides components like BrowserRouter, Route, Switch, and Link for routing.

    • Example: will render the About component when the URL

  • Answered by AI
  • Q2. Questions based on react basics.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be patience you will do it easily.

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Eshopbox Ecommerce Interview FAQs

How many rounds are there in Eshopbox Ecommerce Sde1 interview?
Eshopbox Ecommerce interview process usually has 2-3 rounds. The most common rounds in the Eshopbox Ecommerce interview process are Resume Shortlist, Technical and Coding Test.
How to prepare for Eshopbox Ecommerce Sde1 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, Digital Electronics, JIRA, MongoDB and PHP.
What are the top questions asked in Eshopbox Ecommerce Sde1 interview?

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

  1. Get all permutations of an arr...read more
  2. how Indexing works in...read more
  3. System Design of Bookmys...read more

Recently Viewed

LIST OF COMPANIES

Cubastion Consulting

Overview

SALARIES

Engineers India

JOBS

Cubastion Consulting

No Jobs

LIST OF COMPANIES

Engineers India

Overview

JOBS

Hind Rectifiers

No Jobs

INTERVIEWS

Hind Rectifiers

No Interviews

SALARIES

Engineers India

SALARIES

Engineers India

SALARIES

BestDoc Technology

INTERVIEWS

Deluxe Entertainment

No Interviews

Tell us how to improve this page.

Eshopbox Ecommerce Sde1 Interview Process

based on 3 interviews

Interview experience

4.3
  
Good
View more

Interview Questions from Similar Companies

Cogoport Interview Questions
2.8
 • 53 Interviews
Treebo Hotels Interview Questions
3.3
 • 22 Interviews
Simpl Interview Questions
2.9
 • 17 Interviews
KrazyBee Interview Questions
3.7
 • 14 Interviews
EazyDiner Interview Questions
3.2
 • 14 Interviews
TripFactory Interview Questions
2.0
 • 13 Interviews
Spyne Interview Questions
3.7
 • 12 Interviews
View all
Eshopbox Ecommerce Sde1 Salary
based on 6 salaries
₹6.5 L/yr - ₹12 L/yr
59% less than the average Sde1 Salary in India
View more details
Product Manager
21 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Development Engineer
17 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
16 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Front end Developer
15 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Operations Executive
14 salaries
unlock blur

₹0 L/yr - ₹0 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.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview