Upload Button Icon Add office photos

Filter interviews by

ShopUp Interview Questions, Process, and Tips

Updated 1 Oct 2024

Top ShopUp Interview Questions and Answers

ShopUp Interview Experiences

Popular Designations

4 interviews found

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

I applied via Job Fair and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic questions on time and days

Round 2 - Coding Test 

Topics on search sorting trees and many more

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on dsa and problem solving

Sdet Engineer Interview Questions asked at other Companies

Q1. Tell me about the projects and knowledge on selenium api and etc?
View answer (2)

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 9 Jul 2023

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Jun 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 - Aptitude Test 

Moderate level questions asked in maths aptitude , reasoning train, work time, ratio etc.

Round 3 - Coding Test 

2 coding question asked and 45 min are given to solve.

Round 4 - One-on-one 

(2 Questions)

  • Q1. Some basic code snippets, list comprehension, patterns
  • Q2. In depth ml and stats question for data science role, project life cycle

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
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at SRM Institute of Science & Technology, Chennai and was interviewed before Jun 2022. There were 8 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 tips
Round 2 - Aptitude Test 

27 aptitude qusetions (easy-medium)

Round 3 - Coding Test 

There was an option to select between Hard Aptitude Test and Coding Test. I went for coding test. Easy questions on arrays and strings.

Round 4 - Technical 

(3 Questions)

  • Q1. Basic Coding Questions
  • Q2. Projects/Experience Discussion
  • Q3. Discussion on APIs and how they work
Round 5 - Technical 

(2 Questions)

  • Q1. Check a number is prime or not.
  • Ans. 

    To check if a number is prime, iterate from 2 to the square root of the number and check for divisibility.

    • Start by checking if the number is less than 2, in which case it is not prime.

    • Iterate from 2 to the square root of the number and check if the number is divisible by any of these numbers.

    • If the number is divisible by any number in the range, it is not prime. Otherwise, it is prime.

  • Answered by AI
  • Q2. A two pointer question (two sum)
Round 6 - Technical 

(6 Questions)

  • Q1. OS and DBMS questions
  • Q2. Multihreading vs Multiprocessing
  • Ans. 

    Multithreading allows multiple threads to share the same memory space, while multiprocessing involves separate memory spaces for each process.

    • Multithreading is more lightweight and efficient than multiprocessing.

    • Multithreading is suitable for tasks that involve I/O operations, while multiprocessing is better for CPU-bound tasks.

    • Examples of multithreading include web servers handling multiple requests concurrently, whil...

  • Answered by AI
  • Q3. ACID principles and SQL queries
  • Q4. Reverse a Linked List
  • Ans. 

    Reverse a linked list by changing the next pointers of each node to point to the previous node.

    • Start with three pointers: current, previous, and next.

    • Iterate through the linked list, updating the next pointer of each node to point to the previous node.

    • Update the previous, current, and next pointers for each iteration.

    • Example: 1 -> 2 -> 3 -> 4 -> null, after reversing: 4 -> 3 -> 2 -> 1 -> null

  • Answered by AI
  • Q5. Edit Alphabets (A Dynamic Programming question)
  • Q6. A two pointer based question.
Round 7 - Technical 

(3 Questions)

  • Q1. A graph question to find path in a maze.
  • Ans. 

    Use depth-first search or breadth-first search to find a path in a maze graph.

    • Implement a graph representation of the maze using an adjacency list or matrix.

    • Use depth-first search (DFS) or breadth-first search (BFS) to explore the maze and find a path from start to end.

    • Track visited nodes to avoid infinite loops and dead ends.

    • Consider edge cases such as multiple paths, loops, and obstacles in the maze.

  • Answered by AI
  • Q2. Find area under a graph (coding question)
  • Ans. 

    Calculate the area under a graph using numerical integration.

    • Use numerical integration methods like trapezoidal rule or Simpson's rule to approximate the area under the curve.

    • Divide the graph into small segments and calculate the area of each segment, then sum them up to get the total area.

    • Make sure to handle cases where the graph is below the x-axis by taking the absolute value of the function before calculating the a

  • Answered by AI
  • Q3. Hard SQL queries were asked
Round 8 - HR 

(1 Question)

  • Q1. General Questions / nothing technical or job relevant

Skills evaluated in this interview

Software Development Engineer 1 Interview Questions asked at other Companies

Q1. 4. Design a system for making table reservations at a restaurant.
View answer (1)

Product operation intern Interview Questions & Answers

user image ABHISHEK V S

posted on 9 Aug 2022

I applied via Campus Placement and was interviewed in Jul 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

Distance,average,number series

Round 2 - Assignment 

Use Vlookup and reconcile the files and get the data using pivot table find the total transaction per day

Round 3 - HR 

(1 Question)

  • Q1. Self introduction, where you see yourself in five years?,Technical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared about your role.
Say your answers with confident.

ShopUp interview questions for popular designations

 Data Analyst

 (1)

 Sdet Engineer

 (1)

 Software Development Engineer 1

 (1)

Interview questions from similar companies

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

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

I applied via Company Website and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. General Question Tell me about yourself
  • Q2. How soon you can join
Round 2 - Coding Test 

Read about MPIN that is used to access mobile banking apps

Many a times users end up setting an MPIN that is guessable because

1. It is a commonly used MPIN eg 1122

2. It is a combination of easily known demographics of the user. Eg: if the birthdate is 02- Jan-1998 then MPIN could be 0201 or 9802 or 0201 etc. Demographics such as these could be used alone or in a combination

a. DOB

b. Wedding Anniversary

c. Spouse birthday

Solutions Required

1. Part A: Assume that the MPIN is 4-digits. Write a program that suggests if the MPIN is a commonly used one. Ignore the demographics for this part

2. Part B: Enhance the above to take user's demographics as input and provides an output

a. Strength: WEAK or STRONG

3. Part C: Enhance the above to provide the following outputs

a. Strength: WEAK or STRONG

b. If weak then the reason why was it considered weak: It should give from the following the reasons as an array. Array should be empty if Strength is STRONG and non-empty if WEAK

i. COMMONLY_USED

ii. DEMOGRAPHIC_DOB_SELF

iii. DEMOGRAPHIC_DOB_SPOUSE

iv. DEMOGRAPHIC_ANNIVERSARY

4. Part E: Above with a 6-digit PIN

5. Write code that tests the above written code using a set of inputs. Write at least 20 test case in PYTHON

Destination expert Interview Questions & Answers

TripFactory user image Anonymous

posted on 12 Apr 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Introduce yourself
  • Q2. Favourite international destination
Round 2 - One-on-one 

(2 Questions)

  • Q1. Introduce yourself
  • Q2. Favourite international destination

Interview Preparation Tips

Interview preparation tips for other job seekers - Need confidence, strong communication
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Mar 2024. There were 2 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 

(2 Questions)

  • Q1. Medium level SQL question
  • Q2. Case study on Bigbasket/Instagram
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

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

(2 Questions)

  • Q1. They asked based on your resume few excel questions also
  • Q2. They explained about their company
Round 3 - HR 

(1 Question)

  • Q1. About company little bit about project

Interview Preparation Tips

Interview preparation tips for other job seekers - get yourself up with high excel techniques
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in May 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Just normal Swift question
Round 3 - Technical 

(1 Question)

  • Q1. Same thing, but kept asking the estimated timelines
Round 4 - HR 

(1 Question)

  • Q1. Just background checks

ShopUp Interview FAQs

How many rounds are there in ShopUp interview?
ShopUp interview process usually has 4-5 rounds. The most common rounds in the ShopUp interview process are Aptitude Test, Technical and Coding Test.
How to prepare for ShopUp 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 ShopUp. The most common topics and skills that interviewers at ShopUp expect are Apache, Coding, Debugging, Linux and MySQL.
What are the top questions asked in ShopUp interview?

Some of the top questions asked at the ShopUp interview -

  1. Find area under a graph (coding questi...read more
  2. A graph question to find path in a ma...read more
  3. Check a number is prime or n...read more

Tell us how to improve this page.

ShopUp Interview Process

based on 3 interviews

Interview experience

4.3
  
Good
View more

Interview Questions from Similar Companies

Delhivery Interview Questions
3.9
 • 457 Interviews
Udaan Interview Questions
4.0
 • 335 Interviews
Meesho Interview Questions
3.7
 • 329 Interviews
Moglix Interview Questions
3.4
 • 56 Interviews
Cogoport Interview Questions
2.8
 • 52 Interviews
DealShare Interview Questions
3.4
 • 37 Interviews
GlowRoad Interview Questions
4.2
 • 7 Interviews
Shop101 Interview Questions
3.8
 • 2 Interviews
Zilingo Interview Questions
4.3
 • 2 Interviews
View all

ShopUp Reviews and Ratings

based on 17 reviews

4.0/5

Rating in categories

3.4

Skill development

3.9

Work-life balance

3.8

Salary

2.9

Job security

3.8

Company culture

3.1

Promotions

3.5

Work satisfaction

Explore 17 Reviews and Ratings
Associate Product Manager
9 salaries
unlock blur

₹18 L/yr - ₹22 L/yr

Software Development Engineer
8 salaries
unlock blur

₹10 L/yr - ₹17 L/yr

Software Development Engineer II
7 salaries
unlock blur

₹12 L/yr - ₹19 L/yr

Data Analyst
6 salaries
unlock blur

₹7.5 L/yr - ₹12 L/yr

Software Developer
5 salaries
unlock blur

₹8 L/yr - ₹14 L/yr

Explore more salaries
Compare ShopUp with

Meesho

3.7
Compare

GlowRoad

4.2
Compare

DealShare

3.4
Compare

Shop101

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