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
3.5

based on 358 Reviews

Filter interviews by

Innovaccer Senior Sdet Software Engineer Interview Questions and Answers

Updated 19 Dec 2024

Innovaccer Senior Sdet Software Engineer Interview Experiences

1 interview found

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Solids conceps of oops , recurssion problem
  • Ans. 

    Solid understanding of OOP concepts and recursion problem-solving skills are essential for a Senior SDET Software Engineer role.

    • OOP concepts include encapsulation, inheritance, polymorphism, and abstraction.

    • Recursion is a technique where a function calls itself to solve a problem.

    • Understanding how to break down a problem into smaller subproblems and solve them recursively is key.

    • Examples of recursion problems include f...

  • Answered by AI
Round 2 - Coding Test 

In given array find sum of 3 number equal to targetsum

Interview questions from similar companies

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

I applied via Campus Placement and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Coding Test 

2 Coding questions - medium to hard

Round 2 - One-on-one 

(2 Questions)

  • Q1. Questions on scalable systems.
  • Q2. Medium level DSA questions.
Round 3 - One-on-one 

(2 Questions)

  • Q1. Questions on SQL
  • Q2. Implement LFU using OOPs concepts from scratch.
  • Ans. 

    Implement LFU cache using OOPs concepts

    • Create a class for LFU cache with methods like get, put, and remove

    • Use a hashmap to store key-value pairs and a hashmap to store frequency of each key

    • Implement a doubly linked list to store keys with the same frequency

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Mainly related to JAVA programming
  • Q2. Selenium project reviews
Round 2 - Technical 

(2 Questions)

  • Q1. Reverse the string
  • Ans. 

    Reverse a given string

    • Create a new empty string to store the reversed string

    • Iterate through the original string from end to start and append each character to the new string

    • Return the reversed string

  • Answered by AI
  • Q2. Scenario based questions

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Git workflow and xpath. Reverse a string
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Networking of linux and cloud
  • Ans. 

    Networking of linux and cloud involves configuring network settings, security protocols, and communication between servers and services.

    • Configuring network interfaces in Linux using tools like ifconfig or ip command

    • Setting up virtual private networks (VPNs) for secure communication between cloud servers

    • Implementing firewall rules to control incoming and outgoing network traffic

    • Using protocols like SSH, HTTPS, or VPN pr...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Coding Test 

Frequency array, java collection, missing number

Round 1 - Technical 

(4 Questions)

  • Q1. What is React Context?
  • Ans. 

    React Context is a feature in React that allows data to be passed down the component tree without having to pass props manually.

    • Context provides a way to share values like themes, user data, etc. across the component tree.

    • It avoids prop drilling, where props are passed down multiple levels to reach a component that needs them.

    • Context consists of two parts: a Provider component that provides the data and a Consumer comp...

  • Answered by AI
  • Q2. What is meant by closure in javascript?
  • Ans. 

    Closure is a function that has access to its parent scope, even after the parent function has closed.

    • Closure is created when a function is defined inside another function.

    • The inner function has access to the outer function's variables and parameters.

    • The outer function returns the inner function, which can be called later with the parent scope still accessible.

    • Closures are used for data privacy, event handlers, and call

  • Answered by AI
  • Q3. What are the complicated tasks you've done exceeding everyone's expectation?
  • Q4. Algorithm to convert roman numeral to numbers?
  • Ans. 

    Algorithm to convert roman numeral to numbers

    • Create a dictionary to map roman numerals to their corresponding values

    • Iterate through the roman numeral string from right to left

    • If the current value is less than the previous value, subtract it from the total

    • If the current value is greater than or equal to the previous value, add it to the total

    • Return the total

  • Answered by AI
Round 2 - Technical 

(4 Questions)

  • Q1. What is React context?
  • Ans. 

    React context is a way to pass data through the component tree without having to pass props down manually at every level.

    • Context provides a way to share values like a theme or user data across the component tree.

    • It avoids prop drilling and makes the code cleaner and more maintainable.

    • Context consists of two parts: a Provider component that provides the data and a Consumer component that consumes the data.

    • Context can be...

  • Answered by AI
  • Q2. What is abstract class in javascript?
  • Ans. 

    There is no abstract class in JavaScript.

    • JavaScript does not have a built-in abstract class concept.

    • However, it is possible to create abstract classes using functions and prototypes.

    • Abstract classes are used as blueprints for other classes to inherit from.

    • They cannot be instantiated on their own and must be extended by a subclass.

    • Abstract methods can be defined in the abstract class and must be implemented in the subcl

  • Answered by AI
  • Q3. What is meant by function overloading and function overriding?
  • Ans. 

    Function overloading is when multiple functions have the same name but different parameters. Function overriding is when a subclass provides its own implementation of a method that is already present in the parent class.

    • Function overloading is used to provide multiple ways to call a function with different parameters.

    • Function overriding is used to provide a specific implementation of a method in a subclass.

    • Function ove...

  • Answered by AI
  • Q4. Implement counter in react app
  • Ans. 

    Implement a counter in a React app

    • Create a state variable to hold the count

    • Render the count in the UI

    • Add buttons to increment and decrement the count

    • Update the state variable on button click

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic concepts in js was asked. JS classes questions was also asked

Skills evaluated in this interview

Sde1 Interview Questions & Answers

Amadeus user image Anonymous

posted on 18 May 2022

Round 1 - Technical 

(1 Question)

  • Q1. Why strings are immutable
  • Ans. 

    Strings are immutable to ensure data integrity and prevent unintended changes.

    • Immutable strings allow for safer multithreading and concurrency.

    • String interning is possible because of immutability.

    • Immutable strings can be used as keys in dictionaries and hash tables.

    • Examples of immutable data types include numbers and tuples.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared and questions will mainly appear from resume

Sdet Interview Questions & Answers

DE Shaw user image Anonymous

posted on 9 Dec 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
No response

I applied via Company Website and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Performance Testing
  • Q2. Difference between put and patch

Sdet Interview Questions & Answers

ivy user image Anonymous

posted on 11 Sep 2024

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

(2 Questions)

  • Q1. Test cases of login page
  • Ans. 

    Test cases for login page functionality

    • Verify valid username and password combination successfully logs in

    • Verify error message is displayed for invalid username or password

    • Verify 'Forgot Password' link redirects to password reset page

    • Verify 'Create Account' link redirects to registration page

  • Answered by AI
  • Q2. Code on website
  • Ans. 

    The question is asking for code on a website.

    • Check the website's source code for any embedded scripts or code snippets

    • Look for any external scripts or libraries being used on the website

    • Inspect the network requests to see if any code is being loaded dynamically

  • Answered by AI

Skills evaluated in this interview

Innovaccer Interview FAQs

How many rounds are there in Innovaccer Senior Sdet Software Engineer interview?
Innovaccer interview process usually has 2 rounds. The most common rounds in the Innovaccer interview process are Technical and Coding Test.

Tell us how to improve this page.

People are getting interviews through

based on 1 Innovaccer interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

Globant Interview Questions
3.9
 • 163 Interviews
Chetu Interview Questions
3.3
 • 163 Interviews
Oracle Cerner Interview Questions
3.7
 • 157 Interviews
Tata 1mg Interview Questions
3.7
 • 140 Interviews
AVASOFT Interview Questions
3.0
 • 135 Interviews
Brane Enterprises Interview Questions
2.1
 • 131 Interviews
ivy Interview Questions
3.7
 • 118 Interviews
DE Shaw Interview Questions
3.8
 • 116 Interviews
ServiceNow Interview Questions
4.2
 • 115 Interviews
View all
Data Analyst
287 salaries
unlock blur

₹5.8 L/yr - ₹17 L/yr

Senior Data Analyst
167 salaries
unlock blur

₹8 L/yr - ₹26.8 L/yr

Associate Software Engineer
100 salaries
unlock blur

₹6 L/yr - ₹8 L/yr

Data Engineer
69 salaries
unlock blur

₹4.6 L/yr - ₹16 L/yr

Software Development Engineer II
61 salaries
unlock blur

₹16 L/yr - ₹33 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

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview