Upload Button Icon Add office photos
Engaged Employer

i

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

Shipsy Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Shipsy Interview Questions and Answers

Updated 16 Jun 2025
Popular Designations

8 Interview questions

A Senior Software Engineer was asked 11mo ago
Q. Given an array, sort it into groups of K elements.
Ans. 

Sort an array of strings into groups of K elements

  • Iterate through the array and create subarrays of size K

  • Use a loop to go through the array and add elements to the subarrays

  • Handle cases where the array length is not divisible by K

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked 11mo ago
Q. Given the head of a singly linked list, reverse the list, and return the reversed list.
Ans. 

Reverse a linked list by changing the next pointers of each node

  • Start with three pointers: current, prev, and next

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

  • Update prev and current pointers for next iteration

View all Senior Software Engineer interview questions
A SDE was asked 11mo ago
Q. Given a linked list, reverse the nodes of a linked list k at a time and return its modified list.
Ans. 

Reverse a linked list in groups of a specified size

  • Break the linked list into groups of the specified size

  • Reverse each group individually

  • Connect the reversed groups back together

View all SDE interview questions
A SDE was asked
Q. Explain the concept of topological sort in a graph.
Ans. 

Topological sorting is an ordering of vertices in a directed acyclic graph (DAG) where each directed edge u -> v implies u comes before v.

  • Topological sort is applicable only to Directed Acyclic Graphs (DAGs).

  • It can be implemented using Depth-First Search (DFS) or Kahn's algorithm.

  • Example: For a graph with edges (1 -> 2), (1 -> 3), (2 -> 4), a valid topological sort could be [1, 2, 3, 4] or [1, 3, 2, 4]...

View all SDE interview questions
A Software Engineer was asked
Q. Given the head of a linked list, determine if the linked list has a cycle in it. There is a cycle in a linked list if there is some node in the list that can be reached again by continuously following the n...
Ans. 

Use Floyd's Tortoise and Hare algorithm to detect loop in a Linked List.

  • Initialize two pointers, slow and fast, at the head of the Linked List.

  • Move slow pointer by one step and fast pointer by two steps.

  • If they meet at any point, there is a loop in the Linked List.

View all Software Engineer interview questions
A Software Engineer was asked
Q. Given a Binary Search Tree, print the left view of it. The left view of a Binary Tree is a set of nodes visible when the tree is visited from the left side. The left view is comprised of the leftmost node a...
Ans. 

Left view of BST is the nodes visible when viewing the tree from the left side.

  • The left view of a BST includes the leftmost node at each level.

  • Use level order traversal to find the left view nodes.

  • Example: For BST with nodes 1, 2, 3, 4, 5, the left view is 1, 2.

View all Software Engineer interview questions
A HR Manager was asked
Q. How would you build culture?
Ans. 

Building culture requires clear values, effective communication, and consistent actions.

  • Define and communicate core values

  • Encourage open communication and feedback

  • Lead by example and consistently reinforce desired behaviors

  • Create opportunities for team building and recognition

  • Provide ongoing training and development

  • Celebrate successes and learn from failures

View all HR Manager interview questions
Are these interview questions helpful?
A Senior Software Engineer was asked 11mo ago
Q. Android In depth
Ans. 

Android is a mobile operating system developed by Google, based on the Linux kernel and designed primarily for touchscreen devices.

  • Android is open-source and allows developers to create applications using Java programming language.

  • Android applications are distributed through the Google Play Store.

  • Android supports a wide range of hardware devices from various manufacturers.

  • Android provides a rich set of APIs for de...

View all Senior Software Engineer interview questions

Shipsy Interview Experiences

16 interviews found

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

I applied via LinkedIn and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Most of the questions were around past experience
Round 2 - One-on-one 

(1 Question)

  • Q1. Again, mostly about past experience
Round 3 - One-on-one 

(1 Question)

  • Q1. Technical architecture design and product design case study

Interview Preparation Tips

Topics to prepare for Shipsy Senior Product Manager interview:
  • Product Design
  • Strategy
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Sort an array into group of K elements
  • Ans. 

    Sort an array of strings into groups of K elements

    • Iterate through the array and create subarrays of size K

    • Use a loop to go through the array and add elements to the subarrays

    • Handle cases where the array length is not divisible by K

  • Answered by AI
  • Q2. Reverse a linked list
  • Ans. 

    Reverse a linked list by changing the next pointers of each node

    • Start with three pointers: current, prev, and next

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

    • Update prev and current pointers for next iteration

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. Android In depth
  • Ans. 

    Android is a mobile operating system developed by Google, based on the Linux kernel and designed primarily for touchscreen devices.

    • Android is open-source and allows developers to create applications using Java programming language.

    • Android applications are distributed through the Google Play Store.

    • Android supports a wide range of hardware devices from various manufacturers.

    • Android provides a rich set of APIs for develop...

  • Answered by AI
  • Q2. OOPS related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - The interviewer was pretty rude and was not really open for different opinions. It seemed like he was sitting with a question and answer sheet and he was expecting answers to be same as mentioned in the sheet.

Skills evaluated in this interview

SDE Interview Questions & Answers

user image Harsh Bhatia

posted on 26 Jul 2024

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

Hackerrank coding test

Round 2 - One-on-one 

(2 Questions)

  • Q1. Linked List Reverse in groups
  • Ans. 

    Reverse a linked list in groups of a specified size

    • Break the linked list into groups of the specified size

    • Reverse each group individually

    • Connect the reversed groups back together

  • Answered by AI
  • Q2. HTTP based questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Design based questions

Skills evaluated in this interview

Junior Software Engineer Interview Questions & Answers

user image N190500 SHAIK KHADARBEE

posted on 10 Jul 2024

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

(2 Questions)

  • Q1. Asked me to install fast api and do web scrapping
  • Q2. Technical questions on django
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Left view of BST
  • Ans. 

    Left view of BST is the nodes visible when viewing the tree from the left side.

    • The left view of a BST includes the leftmost node at each level.

    • Use level order traversal to find the left view nodes.

    • Example: For BST with nodes 1, 2, 3, 4, 5, the left view is 1, 2.

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. Detect loop in a Linked List
  • Q2. Second largest salary from employee table

Skills evaluated in this interview

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

DSA questions ...do practice leetcode daily problems

Interview Questions & Answers

user image Anonymous

posted on 1 Sep 2024

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

It was 1 coding que from string

Round 2 - Aptitude Test 

Good discussion about company

Interview Preparation Tips

Interview preparation tips for other job seekers - NA
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before Jun 2024, where I was asked the following questions.

  • Q1. Adaptability and learning.
  • Q2. Practice problem solving.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. How does a viewmodel work internally
  • Ans. 

    A viewmodel is a class that stores and manages UI-related data in a lifecycle-conscious way.

    • Viewmodel survives configuration changes like screen rotations

    • It is not destroyed when the activity is destroyed

    • It is typically used to hold data for the UI to display

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Case Study 

Metrics in airplane industry

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn all metrics in different business industries

Top trending discussions

View All
Interview Tips & Stories
5d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Shipsy?
Ask anonymously on communities.

Shipsy Interview FAQs

How many rounds are there in Shipsy interview?
Shipsy interview process usually has 1-2 rounds. The most common rounds in the Shipsy interview process are One-on-one Round, Technical and Coding Test.
How to prepare for Shipsy 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 Shipsy. The most common topics and skills that interviewers at Shipsy expect are Logistics, Procurement, Robotics, Supply Chain and Computer science.
What are the top questions asked in Shipsy interview?

Some of the top questions asked at the Shipsy interview -

  1. How would you build cultu...read more
  2. How does a viewmodel work interna...read more
  3. Sort an array into group of K eleme...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.8/5

based on 16 interview experiences

Difficulty level

Easy 17%
Moderate 83%

Duration

Less than 2 weeks 67%
2-4 weeks 33%
View more

Interview Questions from Similar Companies

Vyapar Interview Questions
3.5
 • 60 Interviews
Fleetx.io Interview Questions
3.6
 • 29 Interviews
LambdaTest Interview Questions
4.5
 • 26 Interviews
Tata nexarc Interview Questions
3.1
 • 25 Interviews
Springworks Interview Questions
4.5
 • 23 Interviews
Leena AI Interview Questions
3.0
 • 19 Interviews
View all

Shipsy Reviews and Ratings

based on 121 reviews

4.1/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

4.1

Salary

3.8

Job security

4.0

Company culture

3.8

Promotions

3.9

Work satisfaction

Explore 121 Reviews and Ratings
Software Engineer
46 salaries
unlock blur

₹7 L/yr - ₹25 L/yr

Product Manager
23 salaries
unlock blur

₹17.6 L/yr - ₹32 L/yr

Senior Software Engineer
22 salaries
unlock blur

₹14 L/yr - ₹45 L/yr

Associate Product Manager
18 salaries
unlock blur

₹7.5 L/yr - ₹26 L/yr

Sales Manager
16 salaries
unlock blur

₹25.3 L/yr - ₹36 L/yr

Explore more salaries
Compare Shipsy with

Vyapar

3.5
Compare

Nowfloats Technologies

3.2
Compare

ShopKirana

3.8
Compare

Tata nexarc

3.1
Compare
write
Share an Interview