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 Software Developer Interview Questions and Answers

Updated 22 Sep 2024

Shipsy Software Developer Interview Experiences

1 interview found

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

DSA questions ...do practice leetcode daily problems

Top trending discussions

View All
Office Jokes
2w
an executive
CTC ≠ Confidence Transfer Credit
Ab toh aisa lagta hai, chillar jaise salary ke liye main kaju katli ban ke jaa rahi hoon. Samajh nahi aata, main zyada ready ho ke jaa rahi hoon ya ye mujhe kam pay kar rahe hain? #CorporateLife #OfficeJokes #UnderpaidButWellDressed
FeedCard Image
Got a question about Shipsy?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Campus Placement and was interviewed in Jul 2022. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. DSA problems on linked list, OOPs in depth programming, design pattens in Java. Some theoretical knowledge on OOPs and design patterns

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in basics of OOPs and DSA. Design patterns in Java were asked. All the interviewers were young.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Question around priority queue
  • Q2. Decode strings leetcode
  • Ans. 

    Decode strings involves interpreting encoded patterns like '3[a2[c]]' to produce 'accaccacc'.

    • Use a stack to handle nested structures. Example: For '2[abc]', push '2' and 'abc' onto the stack.

    • Iterate through the string, building numbers and characters. Example: '3[a2[c]]' becomes '3', 'a', '2', 'c'.

    • When encountering ']', pop from the stack until '[' is found, then repeat the string as per the number. Example: '2[c]' bec...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. System design questions scenario based
Round 3 - Technical 

(1 Question)

  • Q1. Questions on multidimensional tree
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic questions of dbms ,os

Round 2 - One-on-one 

(2 Questions)

  • Q1. Delete middle node of linked list
  • Ans. 

    To delete the middle node of a linked list, we can iterate through the list to find the middle node and then remove it by adjusting the pointers.

    • Iterate through the linked list to find the middle node by using two pointers - one moving one node at a time and the other moving two nodes at a time.

    • Once the middle node is found, adjust the pointers to skip over the middle node and connect the nodes before and after it.

    • Hand...

  • Answered by AI
  • Q2. N queen problem

Interview Preparation Tips

Interview preparation tips for other job seekers - Be self-confident

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Coding question on DSA
  • Q2. Design pattern followed by basic java questions
Round 2 - Technical 

(2 Questions)

  • Q1. Design patterns in java
  • Ans. 

    Design patterns in Java are reusable solutions to common problems in software design.

    • Design patterns help in creating flexible, maintainable, and scalable code.

    • Some common design patterns in Java include Singleton, Factory, Observer, and Strategy.

    • Each design pattern has its own purpose and can be applied in different scenarios.

    • Design patterns promote code reusability and help in organizing code in a structured manner.

  • Answered by AI
  • Q2. Database designing and java8

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Medium to hard questions based on arrays, dp

Round 2 - Technical 

(2 Questions)

  • Q1. Quick sort algorithm
  • Ans. 

    Quick sort is a popular sorting algorithm that uses divide and conquer strategy.

    • Divides array into smaller sub-arrays based on a pivot element

    • Recursively sorts sub-arrays

    • Combines sorted sub-arrays to get final sorted array

    • Time complexity: O(n log n) on average, O(n^2) worst case

    • Example: [3, 6, 8, 10, 1, 2, 1] -> [1, 1, 2, 3, 6, 8, 10]

  • Answered by AI
  • Q2. Modified rotate a matrix
  • Ans. 

    Rotate a matrix by 90 degrees in place

    • Transpose the matrix

    • Reverse each row of the transposed matrix

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - study well and at the end, they would not hire anyone

Skills evaluated in this interview

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

(1 Question)

  • Q1. JavaScript based, reduce, map, Database indexing

I applied via Recruitment Consulltant and was interviewed in Oct 2022. There were 5 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 

The aptitude test was in online mode. There were 20 mcq questions and 5 coding questions ranging from easy to hard

Round 3 - Group Discussion 

After the Aptitude test, the gd was kept in offline mode ( at office ), the topic was "the pros and cons of online classes

Round 4 - Technical 

(1 Question)

  • Q1. In the 1st technical round, basic questions regarding the languages which i have mentioned in resume was asked. I mentioned python and C in my resume and a coding problem was asked to solve and to further ...
Round 5 - Technical 

(1 Question)

  • Q1. In the second technical OOPS concepts and DSA questions were asked

Interview Preparation Tips

Topics to prepare for Zopsmart Technology Software Developer interview:
  • DSA
  • Algorithms
  • Coding
  • resume
Interview preparation tips for other job seekers - If you pass the last technical round then you will be selected in HR round for the same.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude test such as profit and loss , blood relations

Round 2 - Coding Test 

Questions on string and map

Round 3 - HR 

(1 Question)

  • Q1. Questions like will you be able to work after your assigned time
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Aug 2023. There were 3 interview rounds.

Round 1 - Assignment 

We were to make a go Lang api using one of the frameworks the company has made named go-fr

Round 2 - Technical 

(1 Question)

  • Q1. I was asked 3 questions that were easy they were adding two linked list, tortoise and hare method to find the mid of the linked list and 2 sum problem. On top of that verbal skills were also tested as o wa...
Round 3 - Technical 

(1 Question)

  • Q1. The round tested my Go Lang skills and the questions were generally from the assignment and some HR questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Do easy to medium leetcode and SQL as well also prepare for networking and Operating system

Shipsy Interview FAQs

How many rounds are there in Shipsy Software Developer interview?
Shipsy interview process usually has 1 rounds. The most common rounds in the Shipsy interview process are Coding Test.

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Shipsy Software Developer Salary
based on 12 salaries
₹11 L/yr - ₹26 L/yr
82% more than the average Software Developer Salary in India
View more details

Shipsy Software Developer Reviews and Ratings

based on 3 reviews

5.0/5

Rating in categories

5.0

Skill development

4.7

Work-life balance

5.0

Salary

4.7

Job security

4.7

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 3 Reviews and Ratings
Software Engineer
46 salaries
unlock blur

₹7 L/yr - ₹25 L/yr

Product Manager
23 salaries
unlock blur

₹17 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