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 367 Reviews

Filter interviews by

Innovaccer Senior Data Engineer Interview Questions and Answers

Updated 30 Sep 2024

Innovaccer Senior Data Engineer Interview Experiences

1 interview found

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

I applied via Instahyre and was interviewed before Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

SQL test, 3-5 questions. Easy to moderate difficult.

Round 2 - HR 

(2 Questions)

  • Q1. Your current and expected slaray
  • Q2. Do you have any offer in hand
  • Ans. 

    Yes, I have received an offer from another company.

    • Received an offer from XYZ company for a Senior Data Engineer position

    • Currently evaluating the offer and considering my options

    • Have not made a decision yet

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy and be prepare for SQL python and dashboard

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Cache vs persist
  • Ans. 

    Cache is used for temporary storage of data in memory, while persist is used for saving data to disk for long-term storage.

    • Cache is typically faster as it stores data in memory for quick access.

    • Persist saves data to disk for durability and long-term storage.

    • Cache is often used for temporary data that can be recomputed if lost, while persist is used for important data that needs to be retained.

    • Examples: Using cache for ...

  • Answered by AI
  • Q2. Broadcast join and other optimization techniques
Round 2 - One-on-one 

(4 Questions)

  • Q1. Sql window function
  • Q2. Spark architecture, dataframe vs rdd
  • Q3. Python reverse sentence
  • Ans. 

    Reverse a sentence using Python

    • Split the sentence into words using split() method

    • Reverse the list of words using list slicing

    • Join the reversed list of words back into a sentence using join() method

  • Answered by AI
  • Q4. Join based on nulls in sql

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Majorly around databricks
  • Q2. Azure Data Factory
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How did you ingest kafka data and you day to day activity
  • Ans. 

    I ingested Kafka data using Kafka Connect and performed data processing and analysis on a daily basis.

    • Used Kafka Connect to ingest data from various sources into Kafka topics

    • Developed custom Kafka Connect connectors for specific data sources

    • Utilized Kafka Streams for real-time data processing and analysis

    • Worked with schema registry for data serialization and deserialization

  • Answered by AI
  • Q2. What is catalyst optimizer
  • Ans. 

    Catalyst optimizer is a query optimization framework in Apache Spark that improves performance by generating optimized query plans.

    • Catalyst optimizer is a rule-based optimization framework in Apache Spark.

    • It leverages advanced techniques like predicate pushdown, constant folding, and join reordering to optimize query plans.

    • Catalyst optimizer helps in improving the performance of Spark SQL queries by selecting the most ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - learn spark architecture and about your project end to end

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Jun 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Technical Questions were easy. No coding questions just on architecture level and basic system design questions were asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Got selected in interview. However offer was not released. Time to time HR would call to check whether I am serving notice. "You were searching from long time, still you don't have any other offer yet ". This shows HR team just want to hire someone who is already serving notice irrespective of the rounds cleared
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
-
Result
Selected Selected

I was interviewed in Dec 2024.

Round 1 - Coding Test 

Mainly 4 Questions
1-2 MCQ
3: Create a class deriving from IReptile and return an object of HatchEgg which has Hatch Method. Hatch Method should return same IReptile object.
4) Sorting IDs in dictionary

Round 2 - Technical 

(2 Questions)

  • Q1. The Interviewer was Very Rude and he doesn't care about the Requirements of Hiring a candidate. he was constantly asking about Other Companies Architectures and The things you did in them. instead of havin...
  • Q2. SOLID, Interfaces , Boxing/Unboxing

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay away from this company. very toxic
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Referral and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. Find longest palindromic substring in a given string.
  • Ans. 

    Use dynamic programming to find the longest palindromic substring in a given string.

    • Iterate through the string and expand around each character to find palindromes.

    • Store the length of the longest palindrome found so far.

    • Return the substring based on the start and end indices of the longest palindrome.

  • Answered by AI
  • Q2. How to serialize and deserialise a tree
  • Ans. 

    To serialize and deserialize a tree, use a recursive approach to traverse the tree and store the data in a suitable format.

    • Use pre-order traversal to serialize the tree by storing the node values in a list or string.

    • For deserialization, reconstruct the tree by recursively building nodes from the serialized data.

    • Consider using JSON or XML format for serialization to easily store and retrieve tree structure.

  • Answered by AI
  • Q3. Find if a given regex (containing ., * and lower case english chars) matches a given string.
  • Ans. 

    Use regex library to match given regex with string.

    • Use a regex library like re in Python to match the given regex with the string.

    • Check if the regex matches the string using the library functions.

    • Handle cases where the regex contains special characters like . and * appropriately.

  • Answered by AI
  • Q4. Explain about throttling and implement throttle function.
  • Ans. 

    Throttling is a technique used to control the rate of requests sent to a server.

    • Throttling helps prevent server overload by limiting the number of requests processed at a time.

    • Implementing a throttle function involves setting a maximum request rate and delaying excess requests.

    • Example: Implementing a throttle function in a web application to limit the number of API calls made to a third-party service.

    • Example: Throttlin...

  • Answered by AI
Round 2 - Technical 

(4 Questions)

  • Q1. Find squares of elements in a sorted array and return the sorted response.
  • Ans. 

    Sort the squares of elements in a sorted array and return the sorted response.

    • Iterate through the array and square each element.

    • Store the squared values in a new array.

    • Sort the new array and return it.

  • Answered by AI
  • Q2. Write a short promise example and implement your own promise
  • Ans. 

    A promise is a commitment to do something in the future, typically used for asynchronous operations in JavaScript.

    • Promises are used to handle asynchronous operations in JavaScript.

    • They represent a value that may be available now, in the future, or never.

    • Promises have three states: pending, fulfilled, or rejected.

    • Example: new Promise((resolve, reject) => { setTimeout(() => resolve('Done!'), 1000); });

  • Answered by AI
  • Q3. Explain event loop, what are different types of queues in event loop
  • Ans. 

    Event loop is a mechanism that allows for asynchronous execution of code by managing the order of events in a single thread.

    • Event loop continuously checks the call stack for any functions that need to be executed, and processes them in a non-blocking manner.

    • Different types of queues in event loop include microtask queue (Promise callbacks), macrotask queue (setTimeout, setInterval callbacks), and animation frame queue

  • Answered by AI
  • Q4. What is virtual DOM and why its faster
  • Ans. 

    Virtual DOM is a lightweight copy of the actual DOM, used to improve performance by minimizing direct manipulation of the real DOM.

    • Virtual DOM is a concept used in frameworks like React to optimize rendering performance.

    • Changes are first made to the virtual DOM, which is then compared to the real DOM to identify the minimal updates needed.

    • This approach reduces the number of actual DOM manipulations, resulting in faster...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for ServiceNow Senior Software Engineer interview:
  • React.Js
  • Javascript
  • DSA

Skills evaluated in this interview

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
Less than 2 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

It was well designed

Round 2 - Technical 

(2 Questions)

  • Q1. Basic Questions about data warehousing
  • Q2. Dbt Scenarios

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for dbt and other ETL tools
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic java fundamentals
  • Q2. Spring boot,sql
Round 2 - Technical 

(2 Questions)

  • Q1. Some technical questions from manager
  • Q2. Some challenges or scenario based questions
Round 3 - HR 

(2 Questions)

  • Q1. Salary discussion mostly
  • Q2. Benifts that they offer with TR

Innovaccer Interview FAQs

How many rounds are there in Innovaccer Senior Data Engineer interview?
Innovaccer interview process usually has 2 rounds. The most common rounds in the Innovaccer interview process are Coding Test and HR.
How to prepare for Innovaccer Senior Data Engineer 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, Analytics, SQL, Data Modeling and Analytical skills.

Tell us how to improve this page.

Innovaccer Senior Data Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Globant Interview Questions
3.8
 • 169 Interviews
Chetu Interview Questions
3.3
 • 166 Interviews
Oracle Cerner Interview Questions
3.7
 • 157 Interviews
Tata 1mg Interview Questions
3.7
 • 145 Interviews
AVASOFT Interview Questions
3.0
 • 136 Interviews
Brane Enterprises Interview Questions
2.1
 • 132 Interviews
ivy Interview Questions
3.6
 • 121 Interviews
DE Shaw Interview Questions
3.8
 • 119 Interviews
ServiceNow Interview Questions
4.2
 • 118 Interviews
View all
Innovaccer Senior Data Engineer Salary
based on 25 salaries
₹12.2 L/yr - ₹31 L/yr
7% more than the average Senior Data Engineer Salary in India
View more details

Innovaccer Senior Data Engineer Reviews and Ratings

based on 4 reviews

2.9/5

Rating in categories

2.6

Skill development

3.2

Work-life balance

2.4

Salary

2.1

Job security

2.1

Company culture

2.1

Promotions

2.4

Work satisfaction

Explore 4 Reviews and Ratings
Data Analyst
283 salaries
unlock blur

₹5 L/yr - ₹17 L/yr

Senior Data Analyst
165 salaries
unlock blur

₹7.9 L/yr - ₹25 L/yr

Associate Software Engineer
96 salaries
unlock blur

₹6 L/yr - ₹10 L/yr

Data Engineer
69 salaries
unlock blur

₹4.6 L/yr - ₹16 L/yr

Software Development Engineer II
64 salaries
unlock blur

₹16 L/yr - ₹33 L/yr

Explore more salaries
Compare Innovaccer with

Practo

3.1
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