Upload Button Icon Add office photos
Engaged Employer

i

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

iServeU Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

iServeU Software Developer Interview Questions and Answers for Experienced

Updated 9 Jan 2025

iServeU Software Developer Interview Experiences for Experienced

1 interview found

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

I applied via Walk-in and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - Coding Test 

MCQ on programing. Easy peasy.

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy interviews.

Interview questions from similar companies

I applied via Approached by Company and was interviewed in Sep 2022. There were 2 interview rounds.

Round 1 - Coding Test 

Find number of group of 1s in a 2D array of Os and 1s, Second question is to design a data structure which can perform crud operation.

Round 2 - Assignment 

Design a Ride sharing app, lld question, in java

Interview Preparation Tips

Interview preparation tips for other job seekers - Java specific questions, medium level DSA, LLD rounds
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Basics on Node.js
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Node.js concepts
  • Q2. Schema design

I was interviewed in May 2022.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 Minutes
Round difficulty - Medium

DS/Algo Questions 
2 questions

  • Q1. 

    Hurdle Game Problem Statement

    Kevin is playing a hurdle game where he must jump over hurdles to clear levels. Each level ‘i’ consists of ‘i’ hurdles (e.g., Level 6 has 6 hurdles).

    Given the total number ...

  • Ans. 

    The task is to determine the number of levels cleared by Kevin based on the total number of hurdles he has jumped.

    • Each level 'i' has 'i' hurdles, so Kevin can only reach level 'i' if he has cleared level 'i-1'.

    • Count the number of levels cleared by dividing the total number of hurdles by the sum of the first 'n' natural numbers.

    • The formula to calculate the sum of the first 'n' natural numbers is (n * (n + 1)) / 2.

  • Answered by AI
  • Q2. 

    Last Stone Weight Problem Explanation

    Given a collection of stones, each having a positive integer weight, perform the following operation: On each turn, select the two heaviest stones and smash them toge...

  • Ans. 

    This question is about finding the weight of the last stone after repeatedly smashing the two heaviest stones together.

    • Sort the array of stone weights in descending order.

    • Repeatedly smash the two heaviest stones together until there is at most 1 stone left.

    • If there is 1 stone left, return its weight. Otherwise, return 0.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

Live coding

  • Q1. 

    Rearrange Odd and Even Position Nodes in Linked List

    Rearrange a linked list such that all nodes at odd positions are together, followed by all nodes at even positions. You need to return the head of the ...

  • Ans. 

    The task is to rearrange a linked list such that all odd position nodes are together and all even position nodes are together.

    • Create two separate linked lists, one for odd position nodes and one for even position nodes.

    • Traverse the original linked list and add the nodes to their respective lists based on their position.

    • Join the two lists together by pointing the last node of the odd list to the head of the even list.

    • Re...

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

  • Q1. How would you design a system like Zomato?
  • Ans. 

    Design Zomato - a food delivery platform

    • Zomato is a platform that connects users with restaurants for food delivery

    • Users can search for restaurants, view menus, and place orders

    • Restaurants can register, manage their menus, and receive orders

    • Delivery partners can sign up to deliver orders

    • Payment integration is required for seamless transactions

    • User reviews and ratings can be implemented for restaurant feedback

    • Location-b...

  • Answered by AI
Round 4 - HR 

Round duration - 30 Minutes
Round difficulty - Easy

Cultural

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaHiring ChallengeRupeek interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Graph Theory, Python, Object Oriented ProgrammingTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Prepare for DA/Algo online consistently.
Tip 2 : During interviews, do not hesitate to clarify your doubts, if any. Be in constant communication, explain your thought process.
Tip 3 : Have strong grasp on domain and technologies. Quality over Quantity

Application resume tips for other job seekers

Tip 1 : Have super clear idea about the projects you've been part of in case of any cross questions.
Tip 2 : Along with your role do describe how you increased the throughput or reduced cost.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Oct 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 

Basic mathematics and analytical thinking questions

Round 3 - Coding Test 

Basic programming questions

Round 4 - HR 

(2 Questions)

  • Q1. Be confident and speak casually
  • Q2. Basic questions depending on how u interact

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm and patient and keep preparing on a daily basis
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Assignment 

Data Structures Algorithms

Round 2 - Coding Test 

Data Structures and Algorithm

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for DSA
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Find Target Element in a rotating sorted Array.
  • Ans. 

    Search for target element in a rotated sorted array.

    • Use binary search to find the pivot point where rotation happens.

    • Divide the array into two subarrays and perform binary search on the appropriate subarray.

    • Handle cases where the target element is on the left or right side of the pivot.

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

I applied via LinkedIn and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Sort array of cards in color red , blue,green
  • Ans. 

    Sort array of cards in red, blue, green colors.

    • Use a custom sorting function to sort the array based on color order.

    • Assign a numerical value to each color (e.g. red: 0, blue: 1, green: 2) and sort based on these values.

    • Implement a sorting algorithm like bubble sort or quicksort to rearrange the array based on color order.

  • Answered by AI

Skills evaluated in this interview

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

In test I had to solve 3 dsa questions in 1 hour

Round 2 - Technical 

(1 Question)

  • Q1. I have asked 2 DSA questions in my interview

iServeU Interview FAQs

How many rounds are there in iServeU Software Developer interview for experienced candidates?
iServeU interview process for experienced candidates usually has 1 rounds. The most common rounds in the iServeU interview process for experienced candidates are Coding Test.
What are the top questions asked in iServeU Software Developer interview for experienced candidates?

Some of the top questions asked at the iServeU Software Developer interview for experienced candidates -

  1. What are different modules of node ...read more
  2. Difference between process.nextTick( ) and setImmediate...read more
  3. How to implement async in node...read more

Tell us how to improve this page.

iServeU Software Developer Interview Process for Experienced

based on 1 interview

Interview experience

3
  
Average
View more
iServeU Software Developer Salary
based on 22 salaries
₹3 L/yr - ₹8.5 L/yr
38% less than the average Software Developer Salary in India
View more details

iServeU Software Developer Reviews and Ratings

based on 4 reviews

1.3/5

Rating in categories

2.0

Skill development

1.3

Work-life balance

1.3

Salary

1.3

Job security

1.0

Company culture

1.7

Promotions

1.3

Work satisfaction

Explore 4 Reviews and Ratings
Software Engineer
85 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer Level 1
45 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer Trainee
36 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Manager
33 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
22 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare iServeU with

Urban Company

3.4
Compare

Housejoy

4.2
Compare

Qube Services

4.4
Compare

Zimmber

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