Upload Button Icon Add office photos

Filter interviews by

Instawork India Software Engineer2 Interview Questions, Process, and Tips

Updated 25 Oct 2024

Instawork India Software Engineer2 Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I applied via Company Website and was interviewed in Apr 2024. There were 4 interview rounds.

Round 1 - Coding Test 

There was a round 0 which was basically a screening round, where the interviewer did a rapid fire of a number of questions on NoSQL vs SQL, concurrency, green threads,.etc

Round 1 was a coding round with Smit Patel. The question was given a job graph, i.e job X depends on job A, B,.etc produce any valid ordering in which the set of jobs can complete. We could freely choose the approach and language. I messed this one a little and completed the requirement just in the nick of time.

Round 2 - LLD Round 

(4 Questions)

  • Q1. Optimising indexes in Postgres
  • Ans. 

    Optimising indexes in Postgres involves understanding query patterns and using tools like EXPLAIN to analyze performance.

    • Understand the query patterns to determine which indexes are necessary

    • Use tools like EXPLAIN to analyze query performance and identify areas for optimization

    • Consider using composite indexes for queries that involve multiple columns

    • Regularly monitor and maintain indexes to ensure optimal performance

  • Answered by AI
  • Q2. Name some HTTP verbs
  • Ans. 

    HTTP verbs are used to indicate the action to be performed on a resource in a RESTful API.

    • GET - Retrieve data from a server

    • POST - Send data to a server to create/update a resource

    • PUT - Update a resource on the server

    • DELETE - Remove a resource from the server

    • PATCH - Update a resource partially

  • Answered by AI
  • Q3. How will a live migration occur in a production database where 100% uptime is expected ?
  • Ans. 

    Live migration in a production database with 100% uptime

    • Use database replication to create a secondary database that mirrors the primary one

    • Gradually switch traffic from the primary to the secondary database

    • Once traffic is fully switched, perform the migration on the primary database

    • Switch traffic back to the primary database once migration is complete

    • Monitor for any issues during the migration process

  • Answered by AI
  • Q4. How will you optimise a frequently searched items list ?
  • Ans. 

    Optimise frequently searched items list by implementing caching, indexing, and prioritising popular items.

    • Implement caching to store frequently searched items in memory for quick access.

    • Use indexing to efficiently search and retrieve items from the list.

    • Prioritise popular items by tracking search frequency and displaying them prominently.

    • Consider implementing autocomplete or predictive search to suggest items as users ...

  • Answered by AI
Round 3 - Coding Test 

HLD round, taken by Ratnesh Neema.

We went through work history. Then I was asked to design a feature for a cab platform like uber to generate a heatmap of future cab demand in a city. We spoke about market effects of speaking

Round 4 - Behavioral 

(3 Questions)

  • Q1. Why do you want to work with us ?
  • Q2. What impact will you be remembered for at your last company ?
  • Q3. What teconologies are you interested in ?
  • Ans. 

    I am interested in technologies related to artificial intelligence, machine learning, and cloud computing.

    • Artificial Intelligence

    • Machine Learning

    • Cloud Computing

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't take this seriously. HR doesn't have the professionalism to respond to text and emails. They ghosted me, never gave me a feedback and it was a waste of time to interview with them.
After 5 rounds if you are ghosted then thats a lot of your hours wasted.
Hiring manager was disinterested in the interview. She read cliche questions off a list and wasn't interested in my answers. She only wanted to move on to the next question and get it over with. Besides her and the HR which doesn't care about informing or updating everyone else was nice and the interview was adjusted as per my previous experience.

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Walk-in and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Currying in javascript and implement the sum(1)(2)(3)(4)......
  • Ans. 

    Currying in JavaScript is a technique of transforming a function that takes multiple arguments into a sequence of functions, each taking a single argument.

    • Create a function that takes a single argument and returns a new function that takes the next argument.

    • Repeat this process until all arguments are received and then return the final result.

    • Example: function sum(a) { return function(b) { return function(c) { return fu...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Coding Test 

Asked 2 medium level questions.
1 - provided an array of integers return array of integers which will contain index of next greater element.

2 - provided array of strings and asked to find kth largest number.
number can upto 10^31 which is in string.

Interview Preparation Tips

Interview preparation tips for other job seekers - Online Coding test
DSA round
Design round
HM round
HR round
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
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
Not Selected

I applied via Naukri.com

Round 1 - Technical 

(4 Questions)

  • Q1. Asked to write a program to check whether string is valid or not. String consists of only three kind of special characters "(), [], {}". We need to return true if all special characters are in correct for...
  • Q2. What is useRef hook used for?
  • Ans. 

    useRef hook is used to persist a mutable value across renders without causing a re-render.

    • Used to store mutable values that do not trigger re-renders.

    • Commonly used for accessing DOM elements or storing previous values.

    • Does not cause a re-render when the value changes.

  • Answered by AI
  • Q3. What are the best practices to avoid rerenders and to improve performance
  • Ans. 

    Use memoization, virtual DOM, and shouldComponentUpdate to avoid unnecessary rerenders and improve performance.

    • Implement memoization to store the result of expensive function calls and avoid recalculating them.

    • Use virtual DOM to efficiently update only the parts of the UI that have changed.

    • Override shouldComponentUpdate to prevent unnecessary rerenders by comparing current and next props/state.

  • Answered by AI
  • Q4. What are callbacks, Promises, async await
  • Ans. 

    Callbacks, Promises, async await are asynchronous programming concepts in JavaScript.

    • Callbacks are functions passed as arguments to another function to be executed later.

    • Promises are objects representing the eventual completion or failure of an asynchronous operation.

    • async await is a syntax for writing asynchronous code that looks synchronous, making it easier to read and maintain.

    • Example: Using a callback to handle th...

  • Answered by AI

Skills evaluated in this interview

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.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. The question was about Nodejs
  • Q2. The question was to build a linked list in Nodejs
Round 2 - Technical 

(2 Questions)

  • Q1. The first question was related to DSA
  • Q2. The question was related to SQL
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. It was lld question to design a cab booking system.
  • Q2. Tell me about yourself

Instawork India Interview FAQs

How many rounds are there in Instawork India Software Engineer2 interview?
Instawork India interview process usually has 4 rounds. The most common rounds in the Instawork India interview process are Coding Test and Behavioral.
What are the top questions asked in Instawork India Software Engineer2 interview?

Some of the top questions asked at the Instawork India Software Engineer2 interview -

  1. How will a live migration occur in a production database where 100% uptime is e...read more
  2. How will you optimise a frequently searched items lis...read more
  3. What teconologies are you interested i...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 423 Interviews
BigBasket Interview Questions
3.9
 • 346 Interviews
Udaan Interview Questions
4.0
 • 334 Interviews
Meesho Interview Questions
3.7
 • 326 Interviews
CARS24 Interview Questions
3.6
 • 319 Interviews
Zomato Interview Questions
3.8
 • 314 Interviews
Zepto Interview Questions
3.6
 • 184 Interviews
Blinkit Interview Questions
3.7
 • 173 Interviews
BlackBuck Interview Questions
3.8
 • 172 Interviews
Uber Interview Questions
4.2
 • 160 Interviews
View all
Data Operations Analyst
48 salaries
unlock blur

₹2.8 L/yr - ₹4 L/yr

Community Operations Specialist
10 salaries
unlock blur

₹4 L/yr - ₹5.8 L/yr

Data Analyst
6 salaries
unlock blur

₹3 L/yr - ₹3.5 L/yr

Senior Data Operations Analyst
6 salaries
unlock blur

₹4 L/yr - ₹5.5 L/yr

Product Manager
5 salaries
unlock blur

₹33 L/yr - ₹70 L/yr

Explore more salaries
Compare Instawork India with

Urban Company

3.4
Compare

Quikr

3.8
Compare

Zomato

3.8
Compare

Swiggy

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