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 Engineer Analyst Interview Questions and Answers

Updated 30 Jun 2022

iServeU Software Engineer Analyst Interview Experiences

1 interview found

I applied via Referral and was interviewed in Dec 2021. There were 2 interview rounds.

Round 1 - Coding Test 

U will be asked some theoretical questions then u have to some coding.

Round 2 - Technical 

(2 Questions)

  • Q1. Sort an array of object according to the id without for loop.
  • Ans. 

    Sort an array of objects by id without for loop

    • Use Array.sort() method with a compare function

    • Compare the id property of each object

    • Return -1, 0, or 1 based on comparison

  • Answered by AI
  • Q2. What is Spread operator and why to use. And give an example where u had used it.
  • Ans. 

    Spread operator is used to spread the elements of an iterable object into a new array or object.

    • Spread operator is denoted by three dots (...)

    • It can be used with arrays, objects, and function arguments

    • It simplifies the code and makes it more readable

    • Example: const arr1 = [1, 2, 3]; const arr2 = [...arr1, 4, 5]; // [1, 2, 3, 4, 5]

    • Example: const obj1 = {a: 1, b: 2}; const obj2 = {...obj1, c: 3}; // {a: 1, b: 2, c: 3}

  • Answered by AI

Interview Preparation Tips

Topics to prepare for iServeU Software Engineer Analyst interview:
  • Javascript
  • Javascript Frameworks
  • HTML
  • CSS
  • Bootstrap
  • Angular
  • React.Js
  • Node.Js
  • MongoDB
  • Ionic Framework
  • React Native
Interview preparation tips for other job seekers - Don't run for many languages. Focus on any one. And understand the depth of that language, then everyone will wait for. Happy coding. 😊

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Referral and was interviewed before Sep 2022. 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 - One-on-one 

(1 Question)

  • Q1. Mapping question
Round 3 - One-on-one 

(1 Question)

  • Q1. Project related
Round 4 - HR 

(1 Question)

  • Q1. Fit check for team
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Exam to test reasoning and aptitude, and speed to answer them

Round 2 - Coding Test 

Dsa question easy to medium level

Round 3 - Behavioral 

(5 Questions)

  • Q1. Just culture fit question, and medium dsa questions
  • Q2. Print pyramid from Fibonacci sequence
  • Ans. 

    Print pyramid from Fibonacci sequence

    • Generate Fibonacci sequence up to a certain number

    • Use the Fibonacci numbers to create the pyramid structure

    • Print each row of the pyramid with appropriate spacing

  • Answered by AI
  • Q3. Linked list sort
  • Q4. Design SQL tables for library management system
  • Ans. 

    Design SQL tables for library management system

    • Create tables for books, authors, members, transactions, etc.

    • Use primary and foreign keys to establish relationships between tables

    • Include columns like book title, author name, member ID, due date, etc.

  • Answered by AI
  • Q5. Valid bracket dsa question

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Java , Spring, SQL questions asked without one data structure basic live coding question

Round 2 - HR 

(2 Questions)

  • Q1. What are your expectation to work with us
  • Q2. How will you manage to improve with us
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It consist of 4 DSA ques and few quiz and opps concept based ques
1st was string based Medium level ques.
2nd was a ques based on 2 pointer
And other 2 was from Vector and Linked list easy ques

Round 2 - Technical 

(3 Questions)

  • Q1. It was stock buy and sell ques on leetcode where we need to find Max profit and what day to buy and sell
  • Q2. 2d array ques to print natural numbers in spiral form
  • Ans. 

    Print natural numbers in spiral form using a 2D array.

    • Create a 2D array with dimensions n x n.

    • Initialize variables for row and column boundaries.

    • Iterate through the array in a spiral pattern, filling in natural numbers.

  • Answered by AI
  • Q3. Hard level linked list ques

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Aug 2022. There were 3 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 - Technical 

(2 Questions)

  • Q1. Basic of spring boot, Database, annotations, core Java, and some basic DSA problems
  • Q2. Study basics of spring boot, spring hibernate, database - relational and others. And problems basic string and array questions
Round 3 - HR 

(2 Questions)

  • Q1. Description about yourself
  • Q2. Told about my self and some technical questions

Interview Preparation Tips

Topics to prepare for Verifone Software Developer interview:
  • Spring Boot
  • spring hibernate
  • Oracle DBA
  • MongoDB
  • annotations
  • Kafka
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Time ,speed ,distance

Round 2 - Assignment 

Java application using oops concept

Round 3 - Technical 

(1 Question)

  • Q1. Inheritance , oops
Round 4 - HR 

(1 Question)

  • Q1. Tell me about urself
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Concurrent modification exception Java multithreading java collection framework oops

I applied via Company Website

Interview Questionnaire 

2 Questions

  • Q1. Question related to security
  • Q2. Question related to Data Structure

Interview Preparation Tips

Interview preparation tips for other job seekers - Should study about various data encryption algorithms. About spring security. Data structure

Interview Questionnaire 

6 Questions

  • Q1. Strings
  • Q2. Java 8 features like lamba expressions stream API
  • Q3. Collections
  • Q4. Autoboxing and Unboxing
  • Q5. Generics
  • Q6. String manipulation problems
  • Ans. 

    String manipulation problems involve modifying or analyzing strings of characters.

    • Use built-in string methods like substring, replace, and split.

    • Regular expressions can be powerful tools for pattern matching and manipulation.

    • Be mindful of edge cases like empty strings and null values.

    • Consider the time and space complexity of your solution.

    • Practice with coding challenges on websites like LeetCode and HackerRank.

  • Answered by AI

Skills evaluated in this interview

iServeU Interview FAQs

How many rounds are there in iServeU Software Engineer Analyst interview?
iServeU interview process usually has 2 rounds. The most common rounds in the iServeU interview process are Coding Test and Technical.
What are the top questions asked in iServeU Software Engineer Analyst interview?

Some of the top questions asked at the iServeU Software Engineer Analyst interview -

  1. What is Spread operator and why to use. And give an example where u had used ...read more
  2. Sort an array of object according to the id without for lo...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

HighRadius Interview Questions
2.9
 • 184 Interviews
Razorpay Interview Questions
3.6
 • 154 Interviews
Rupeek Interview Questions
3.7
 • 61 Interviews
Freecharge Interview Questions
3.8
 • 53 Interviews
Mobikwik Interview Questions
3.6
 • 47 Interviews
Jupiter Money Interview Questions
3.3
 • 29 Interviews
Spice Money Interview Questions
4.0
 • 29 Interviews
Paytm Money Interview Questions
3.2
 • 27 Interviews
Verifone Interview Questions
3.3
 • 24 Interviews
View all
Software Engineer
87 salaries
unlock blur

₹3 L/yr - ₹8.1 L/yr

Software Engineer Level 1
47 salaries
unlock blur

₹3.2 L/yr - ₹7.8 L/yr

Software Engineer Trainee
36 salaries
unlock blur

₹2.2 L/yr - ₹6.6 L/yr

Product Manager
28 salaries
unlock blur

₹3 L/yr - ₹12.9 L/yr

Software Developer
24 salaries
unlock blur

₹3 L/yr - ₹9 L/yr

Explore more salaries
Compare iServeU with

HighRadius

2.8
Compare

AGS Transact Technologies

3.0
Compare

Rupeek

3.7
Compare

Hitachi Payment Services

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