Upload Button Icon Add office photos
Engaged Employer

i

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

Innovaccer Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Innovaccer Software Development Engineer II Interview Questions and Answers

Updated 26 Mar 2024

Innovaccer Software Development Engineer II Interview Experiences

2 interviews found

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

Data Structures and Algorithms

Round 2 - Technical 

(1 Question)

  • Q1. Questions on system design
Round 3 - Technical 

(1 Question)

  • Q1. Cultural fit and work experience
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
-
Result
Selected Selected

I was interviewed in Aug 2023.

Round 1 - Coding Test 

Below average logical Javascript and React questions.

Round 2 - One-on-one 

(1 Question)

  • Q1. React optimization techniques and basic JS algo question.

Interview Preparation Tips

Interview preparation tips for other job seekers - if you are looking for a challenging project to work on and a politics-free culture then I'd suggest look for another company.

Software Development Engineer II Interview Questions Asked at Other Companies

asked in Zepto
Q1. Given 2 large numeric comma seperated strings. You need to calcul ... read more
asked in Zepto
Q2. How many microservices do I own & at what scale they handle t ... read more
asked in Porter
Q3. 1. Given an array find a subset that sums to a given sum K 2. Giv ... read more
Q4. design a LLD of portfolio management system where you can add any ... read more
asked in S&P Global
Q5. Difference between truncate and delete and when we prefer what op ... read more

Software Development Engineer II Jobs at Innovaccer

View all

Interview questions from similar companies

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

(3 Questions)

  • Q1. Mvc , mapping , rest endpoints
  • Q2. Oops concepts from java
  • Ans. 

    Object-oriented programming concepts in Java

    • Encapsulation: bundling data and methods together

    • Inheritance: creating new classes from existing ones

    • Polymorphism: using a single interface to represent different types

    • Abstraction: hiding implementation details and providing a simplified view

    • Encapsulation example: using private variables and public methods

    • Inheritance example: creating a subclass that inherits properties and m...

  • Answered by AI
  • Q3. System design ques were asked

Interview Preparation Tips

Interview preparation tips for other job seekers - great

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Build a Hash Map which does everything in o(1)
  • Ans. 

    Use a combination of hash table and linked list to achieve O(1) operations for a Hash Map.

    • Use a hash table to store key-value pairs and a linked list to handle collisions.

    • Implement a hash function to map keys to indices in the hash table.

    • For each key, calculate the hash value and store the corresponding value in the hash table at that index.

    • To handle collisions, use separate chaining with linked lists at each index of ...

  • Answered by AI
  • Q2. Buy and Sell Stock 4

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed before Jun 2022. There were 2 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. DS problem with arrays like max profit
  • Ans. 

    Find the maximum profit that can be made by buying and selling stocks in an array.

    • Use a greedy approach to find the maximum profit by keeping track of the minimum price and updating the maximum profit.

    • Iterate through the array and calculate the difference between each element and the minimum price seen so far.

    • Return the maximum profit obtained from the array.

  • Answered by AI
  • Q2. String manipulation problem
  • Ans. 

    Reverse each word in a given array of strings

    • Iterate through each string in the array

    • Split each string into individual words

    • Reverse each word and join them back together

    • Return the modified array of strings

  • Answered by AI

Interview Preparation Tips

Topics to prepare for yellow.ai Software Development Engineer II interview:
  • System designs
  • Distributed data processing
Interview preparation tips for other job seekers - Be good in algo and DS
Stong in design problems related to log processing and ticketing systems

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected
Round 1 - Group Discussion 

The first round was a group discussion about online shopping.

Round 2 - Technical 

(1 Question)

  • Q1. What questions did the interviewer ask is related to the Java programming language
Round 3 - One-on-one 

(1 Question)

  • Q1. Discussed about General questions related to Company and personal details
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Java springboot basic to intermediate question
  • Q2. Java stream questions
Round 2 - Technical 

(2 Questions)

  • Q1. Easy level DSA questions
  • Q2. Project based questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. String based questions in java
  • Q2. What are the fundamental concepts of Java?
  • Ans. 

    Fundamental concepts of Java include OOP, platform independence, memory management, and exception handling.

    • Object-oriented programming (OOP) - Java is based on classes and objects, allowing for encapsulation, inheritance, and polymorphism.

    • Platform independence - Java code can run on any platform with the help of JVM (Java Virtual Machine).

    • Memory management - Java has automatic garbage collection to manage memory effici...

  • Answered by AI
Round 2 - Coding Test 

Java based questions and few DSA questions

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

I applied via LinkedIn and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Angular structure
  • Q2. Dependency injection
Round 2 - Technical 

(2 Questions)

  • Q1. Manageral questions
  • Q2. Scenario based questions
Round 3 - HR 

(1 Question)

  • Q1. Package discussion
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

1) Finding and removing loop in linked list. 2)find pair of given sum in binary tree

Round 2 - One-on-one 

(2 Questions)

  • Q1. Print bottom view of binary tree
  • Ans. 

    Print the bottom view of a binary tree

    • Use a map to store the horizontal distance and node value at each level

    • Perform a level order traversal of the binary tree

    • Update the map with the node value at each horizontal distance

    • Print the node values in the map for the bottom view

  • Answered by AI
  • Q2. Oops related output based questions

Skills evaluated in this interview

Innovaccer Interview FAQs

How many rounds are there in Innovaccer Software Development Engineer II interview?
Innovaccer interview process usually has 2-3 rounds. The most common rounds in the Innovaccer interview process are Coding Test, Technical and One-on-one Round.
How to prepare for Innovaccer Software Development Engineer II interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Innovaccer. The most common topics and skills that interviewers at Innovaccer expect are Python, RDBMS, Healthcare, Javascript and Backend.
What are the top questions asked in Innovaccer Software Development Engineer II interview?

Some of the top questions asked at the Innovaccer Software Development Engineer II interview -

  1. React optimization techniques and basic JS algo questi...read more
  2. Questions on system des...read more

Tell us how to improve this page.

Innovaccer Software Development Engineer II Interview Process

based on 2 interviews

Interview experience

2
  
Poor
View more
Innovaccer Software Development Engineer II Salary
based on 61 salaries
₹18 L/yr - ₹34 L/yr
At par with the average Software Development Engineer II Salary in India
View more details

Innovaccer Software Development Engineer II Reviews and Ratings

based on 4 reviews

2.1/5

Rating in categories

2.7

Skill development

3.4

Work-life balance

4.0

Salary

2.2

Job security

2.6

Company culture

3.6

Promotions

2.6

Work satisfaction

Explore 4 Reviews and Ratings
Data Analyst
309 salaries
unlock blur

₹5 L/yr - ₹16 L/yr

Senior Data Analyst
171 salaries
unlock blur

₹8 L/yr - ₹25 L/yr

Associate Software Engineer
96 salaries
unlock blur

₹6 L/yr - ₹10 L/yr

Data Engineer
67 salaries
unlock blur

₹4.8 L/yr - ₹16 L/yr

Software Development Engineer II
61 salaries
unlock blur

₹18 L/yr - ₹34 L/yr

Explore more salaries
Compare Innovaccer with

Practo

3.2
Compare

Lybrate

3.5
Compare

Portea Medical

4.3
Compare

PharmEasy

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