Upload Button Icon Add office photos
Engaged Employer

i

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

Shiprocket Private Limited Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Shiprocket Private Limited Software Developer Interview Questions, Process, and Tips

Updated 24 Oct 2024

Top Shiprocket Private Limited Software Developer Interview Questions and Answers

View all 6 questions

Shiprocket Private Limited Software Developer Interview Experiences

4 interviews found

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

I applied via Approached by Company and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tree question dsa
  • Q2. Fibonacci sequence question

Interview Preparation Tips

Interview preparation tips for other job seekers - Round 1 - Technical: The first round involved solving one tree-based question and one array-based question. I was also asked about object-oriented programming concepts, Git commands, and SQL queries. In addition, I faced questions based on my resume projects, and I was asked to explain the difference between a primary key and a unique key.

Round 2 - Technical: The second round focused more on system design and APIs. I was asked to explain the difference between PUT and POST in REST APIs, design the database schema of one of my projects, and discuss inheritance and access modifiers (public, private, protected). Git commands were also covered. A scenario-based question was presented: "How would you send an email to a million users, ensuring that if an email fails, the system retries sending it three times? If the retries fail, the system should move on to the next email. Additionally, if the system crashes after sending 1000-2000 emails, how would you ensure that upon restart, it resumes from where it left off without resending emails?"

The HR was friendly, clearly explained the next steps, and provided constructive feedback. Overall, it was a positive interview experience.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(7 Questions)

  • Q1. Angular18 updates`
  • Q2. Angular Ivy features
  • Q3. Dif between var, let, const
  • Ans. 

    var is function scoped, let is block scoped, const is block scoped and cannot be reassigned.

    • var is function scoped, let is block scoped, const is block scoped and cannot be reassigned

    • var can be redeclared and updated, let can be updated but not redeclared, const cannot be redeclared or updated

    • Example: var x = 10; let y = 20; const z = 30;

  • Answered by AI
  • Q4. What is Closure
  • Ans. 

    Closure is a function that captures the variables from its surrounding scope, even after the surrounding function has finished executing.

    • Closure allows a function to access and manipulate variables from its outer scope.

    • It maintains a reference to its outer scope, even after the outer function has returned.

    • Closure is commonly used in event handlers and callbacks.

  • Answered by AI
  • Q5. Dependency injection
  • Q6. Rxjs operators used
  • Ans. 

    Rxjs operators are used for handling asynchronous operations in reactive programming.

    • Map operator: transforms the items emitted by an Observable

    • Filter operator: emits only those items from an Observable that pass a specified condition

    • Merge operator: combines multiple Observables into one by merging their emissions

    • SwitchMap operator: switches to a new Observable each time it is emitted

    • DebounceTime operator: emits a valu...

  • Answered by AI
  • Q7. Change detection strategy in Angular
  • Ans. 

    Change detection strategy in Angular is a mechanism used to detect changes in the application state and update the view accordingly.

    • Angular uses Zone.js for change detection by default

    • Change detection can be triggered manually using ChangeDetectorRef

    • Optimizing change detection using OnPush strategy

  • Answered by AI

Skills evaluated in this interview

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Nagarro
Q4. Crazy Numbers Pattern Challenge Ninja enjoys arranging numbers in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Trapping rain drops
  • Q2. Next highest number
  • Ans. 

    To find the next highest number, sort the numbers in ascending order and find the number immediately greater than the given number.

    • Sort the numbers in ascending order

    • Find the number immediately greater than the given number

    • Return the next highest number

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

(2 Questions)

  • Q1. Projects discussion
  • Q2. Lld design question

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Jump Game - II
  • Q2. Number of Island
  • Ans. 

    Count the number of islands in a given grid of '1's and '0's.

    • Iterate through the grid and for each '1' encountered, perform a depth-first search to mark all connected '1's as visited.

    • Increment the island count for each new island encountered.

    • Consider edge cases like grid boundaries and handling visited cells.

  • Answered by AI

Skills evaluated in this interview

Shiprocket Private Limited interview questions for designations

 Software Engineer

 (6)

 Backend Developer

 (1)

 Senior Software Engineer

 (2)

 Associate Software Engineer

 (1)

 Front end Developer

 (2)

 Golang Developer

 (1)

 Angular Frontend Developer

 (1)

 Senior Frontend Software Engineer

 (1)

Interview questions from similar companies

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

The exam duration is one and a half hours.

Round 2 - Coding Test 

The total exam time is one and a half hours.

Round 3 - Group Discussion 

It encompasses all topics related to full stack development.

Round 4 - Technical 

(2 Questions)

  • Q1. Asks questions on SQL
  • Q2. Asks question in typical topics
Round 5 - HR 

(1 Question)

  • Q1. Where do you see yourself in two years?
  • Ans. 

    In two years, I see myself as a senior software developer leading a team on innovative projects.

    • Advancing to a senior software developer role

    • Leading a team on new and innovative projects

    • Continuing to enhance my technical skills through ongoing learning and training

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. Explain Deadlock?
  • Q2. Explain Red Black Tree?
  • Q3. Find local minima in a 1-D array?
  • Q4. Find local minima in 2-D array?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(2 Questions)

  • Q1. LRU Cache - how to tackle
  • Ans. 

    LRU Cache is a data structure that maintains a list of items in order of most recently used to least recently used.

    • Implement using a doubly linked list and a hashmap for efficient operations

    • When an item is accessed, move it to the front of the list

    • When the cache is full, remove the least recently used item from the end of the list

  • Answered by AI
  • Q2. LRU Cache implementation based on a real time system. How would the main work which will be called etc etc
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Oct 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Easy level to Medium level

Round 2 - Coding Test 

2 Easy questions of DSA

Round 3 - One-on-one 

(2 Questions)

  • Q1. One DSA question
  • Q2. Normal discussion about tech stack
Round 4 - HR 

(2 Questions)

  • Q1. Tell about yourself
  • Q2. Why do you want to join digit?

Interview Preparation Tips

Interview preparation tips for other job seekers - Go easy.. Nothing is hard in digit hiring
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Easy to medium questions, Questions on DSA and Node.js.

Round 2 - Technical 

(2 Questions)

  • Q1. Valid parenthesis
  • Q2. Three sum problem

Interview Preparation Tips

Topics to prepare for Zetwerk Software Developer interview:
  • js
  • node.js
  • dsa
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Netaji Subhas Institute of Technology (NSIT) and was interviewed in Jul 2024. There were 4 interview rounds.

Round 1 - Coding Test 

It was a coding round where i need to solve 3 DSA Questions in 1.5 hour

Round 2 - Technical 

(2 Questions)

  • Q1. This is Technical round where i was asked to implement the Two Question of Dsa one is bases on greedy and another is dp , another one is leetcode hard (finding maxaimal area of rectangle in matrix of 1 and...
  • Q2. Greedy Q was direct i don't remember clearly. I was selected for the 2nd round
Round 3 - One-on-one 

(1 Question)

  • Q1. It was also a technical round but bases on LLD problem statement. I was given a problem statement to design a society security system and the they need psudo code for complete implementation using correct ...
Round 4 - HR 

(1 Question)

  • Q1. I was not selected for 4th round but heard that there were Q on cs fundamentals.

Shiprocket Private Limited Interview FAQs

How many rounds are there in Shiprocket Private Limited Software Developer interview?
Shiprocket Private Limited interview process usually has 1-2 rounds. The most common rounds in the Shiprocket Private Limited interview process are One-on-one Round.
What are the top questions asked in Shiprocket Private Limited Software Developer interview?

Some of the top questions asked at the Shiprocket Private Limited Software Developer interview -

  1. Change detection strategy in Angu...read more
  2. what is Clos...read more
  3. Dif between var, let, co...read more

Tell us how to improve this page.

Shiprocket Private Limited Software Developer Interview Process

based on 4 interviews

1 Interview rounds

  • One-on-one Round
View more
Shiprocket Private Limited Software Developer Salary
based on 21 salaries
₹6 L/yr - ₹18 L/yr
79% more than the average Software Developer Salary in India
View more details

Shiprocket Private Limited Software Developer Reviews and Ratings

based on 6 reviews

3.9/5

Rating in categories

3.8

Skill development

3.6

Work-life balance

4.0

Salary

3.8

Job security

3.6

Company culture

3.4

Promotions

4.0

Work satisfaction

Explore 6 Reviews and Ratings
Software Engineer
156 salaries
unlock blur

₹6 L/yr - ₹23.8 L/yr

Senior Specialist
86 salaries
unlock blur

₹4 L/yr - ₹9.1 L/yr

Assistant Manager
72 salaries
unlock blur

₹5.5 L/yr - ₹12.3 L/yr

Key Account Manager
69 salaries
unlock blur

₹3.5 L/yr - ₹11.7 L/yr

Specialist
69 salaries
unlock blur

₹3.4 L/yr - ₹7 L/yr

Explore more salaries
Compare Shiprocket Private Limited with

Pickrr

4.0
Compare

Delhivery

3.9
Compare

Ecom Express

3.9
Compare

XpressBees

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