Upload Button Icon Add office photos

Filter interviews by

OPTUMINSIGHT INDIA Senior Data Engineer Interview Questions and Answers

Updated 18 Apr 2023

OPTUMINSIGHT INDIA Senior Data Engineer Interview Experiences

1 interview found

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

I applied via Approached by Company and was interviewed in Apr 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 - Coding Test 

Analysing General capabilities on coding part

Round 3 - One-on-one 

(2 Questions)

  • Q1. Coding hands on
  • Q2. Build an algorithm for ATM withdrawal logic
  • Ans. 

    Algorithm for ATM withdrawal logic

    • Determine the maximum amount that can be withdrawn based on account balance and daily withdrawal limit

    • Check if the ATM has enough cash to dispense the requested amount

    • If the requested amount is greater than the maximum withdrawal limit, reject the transaction

    • If the ATM is out of cash, reject the transaction

    • If the account balance is insufficient, reject the transaction

    • If all conditions ...

  • Answered by AI
Round 4 - One-on-one 

(3 Questions)

  • Q1. High level coding test
  • Q2. Train ticket booking algorthim once the ticket got cancelled by some user
  • Q3. Build a data model for global warming
  • Ans. 

    A data model for global warming should include various environmental factors and their impact on climate change.

    • Include data on greenhouse gas emissions, temperature changes, sea level rise, and extreme weather events.

    • Consider the impact of human activities such as deforestation and fossil fuel consumption.

    • Incorporate data from various sources such as satellite imagery, weather stations, and scientific studies.

    • Use stat...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

(2 Questions)

  • Q1. What is the internal working of a hashmap?
  • Q2. Design a Least Recently Used (LRU) cache.
Round 2 - Technical 

(2 Questions)

  • Q1. What are the SOLID principles in software engineering?
  • Q2. What design patterns have you worked with?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. SQL Array Oop
  • Q2. Array defintiion and uses
  • Ans. 

    An array is a data structure that stores a collection of elements of the same data type.

    • Arrays are used to store multiple values in a single variable.

    • Elements in an array are accessed by their index, starting from 0.

    • Example: String[] names = {"Alice", "Bob", "Charlie"};

  • Answered by AI
  • Q3. Data structures and its uses
  • Ans. 

    Data structures are used to organize and store data efficiently in computer memory.

    • Data structures help in efficient data retrieval, insertion, and deletion operations.

    • Examples include arrays, linked lists, stacks, queues, trees, and graphs.

    • Each data structure has its own advantages and use cases based on the requirements of the application.

    • For example, arrays are used for random access to elements, while linked lists

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. List, tuple Decorators
  • Q2. What is the process for removing duplicates from a list?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Interviewer asked me basic SQL questions
  • Q2. In the second technical round he asked me advanced SQL topics (Windows Functions, Joins & Subqueries)
Round 2 - Coding Test 

In the second technical round interview asked me about advanced sql topics, theory questions and two coding questions in joins and window functions.

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

(2 Questions)

  • Q1. Tell me about your projects?
  • Q2. How do you approach the project if you are using logistic regression model?
  • Ans. 

    Approach involves data preprocessing, model training, evaluation, and interpretation.

    • Perform data preprocessing such as handling missing values, encoding categorical variables, and scaling features.

    • Split the data into training and testing sets.

    • Train the logistic regression model on the training data.

    • Evaluate the model using metrics like accuracy, precision, recall, and F1 score.

    • Interpret the model coefficients to under...

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. What are you future goals?
  • Q2. What would you do if your interested field doesnt have any work in the company?
  • Ans. 

    I would seek opportunities to apply my skills in related fields within the company.

    • Explore other departments or teams within the company that may have projects related to my field of interest

    • Offer to collaborate with colleagues in different departments to bring a new perspective to their projects

    • Seek out professional development opportunities to expand my skills and knowledge in related areas

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(4 Questions)

  • Q1. What is the difference between normal and arrow functions
  • Ans. 

    Arrow functions are more concise and have a lexical 'this' binding compared to normal functions.

    • Arrow functions do not have their own 'this' keyword, they inherit it from the parent scope.

    • Arrow functions do not have their own 'arguments' object.

    • Arrow functions cannot be used as constructors with 'new'.

    • Arrow functions are more concise and have implicit return when no curly braces are used.

  • Answered by AI
  • Q2. All basic JS Questions to cover Hoisting closure
  • Q3. They asked to show me an example using the API call
  • Q4. Difference between forEach and Map
  • Ans. 

    forEach is used to iterate over an array and perform a function on each element, while map creates a new array by applying a function to each element.

    • forEach does not return a new array, while map does

    • forEach does not modify the original array, while map creates a new array

    • forEach is used for side effects, while map is used for transformation

    • Example: forEach - array.forEach(item => console.log(item)), map - const newAr

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Cover JS basics

Skills evaluated in this interview

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

(1 Question)

  • Q1. What is Observables, Services, Promises, Closure ?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Basic Recommendation System Questions
  • Q2. A B Testing Questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain collection framework and uses
  • Ans. 

    Collection framework is a set of interfaces and classes in Java that provide a way to store and manipulate groups of objects.

    • Provides interfaces like List, Set, Map for storing collections of objects

    • Includes classes like ArrayList, HashSet, HashMap for implementing these interfaces

    • Allows for easy manipulation, sorting, searching, and iteration of collections

    • Used in various applications like data processing, data storag

  • Answered by AI
  • Q2. Explain springboot and it's annotation
  • Ans. 

    Spring Boot is a Java-based framework used for creating standalone, production-grade Spring-based applications.

    • Spring Boot simplifies the process of creating Spring applications by providing defaults for configuration and eliminating the need for XML configuration files.

    • Annotations in Spring Boot are used to simplify the configuration of Spring applications by providing metadata about the application.

    • Examples of annota...

  • Answered by AI

Skills evaluated in this interview

OPTUMINSIGHT INDIA Interview FAQs

How many rounds are there in OPTUMINSIGHT INDIA Senior Data Engineer interview?
OPTUMINSIGHT INDIA interview process usually has 4 rounds. The most common rounds in the OPTUMINSIGHT INDIA interview process are One-on-one Round, Resume Shortlist and Coding Test.
What are the top questions asked in OPTUMINSIGHT INDIA Senior Data Engineer interview?

Some of the top questions asked at the OPTUMINSIGHT INDIA Senior Data Engineer interview -

  1. Build an algorithm for ATM withdrawal lo...read more
  2. Build a data model for global warm...read more
  3. Train ticket booking algorthim once the ticket got cancelled by some u...read more

Tell us how to improve this page.

OPTUMINSIGHT INDIA Senior Data Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
OPTUMINSIGHT INDIA Senior Data Engineer Salary
based on 4 salaries
₹15 L/yr - ₹24 L/yr
6% less than the average Senior Data Engineer Salary in India
View more details

OPTUMINSIGHT INDIA Senior Data Engineer Reviews and Ratings

based on 1 review

2.0/5

Rating in categories

3.0

Skill development

3.0

Work-life balance

2.0

Salary

2.0

Job security

2.0

Company culture

2.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer
21 salaries
unlock blur

₹7.4 L/yr - ₹22 L/yr

Senior Software Engineer
16 salaries
unlock blur

₹17.5 L/yr - ₹32.2 L/yr

Data Analyst
14 salaries
unlock blur

₹5 L/yr - ₹12.4 L/yr

Data Engineering Analyst
13 salaries
unlock blur

₹5.4 L/yr - ₹9.8 L/yr

Business Analyst
9 salaries
unlock blur

₹5.5 L/yr - ₹15 L/yr

Explore more salaries
Compare OPTUMINSIGHT INDIA with

Cognizant

3.8
Compare

Accenture

3.9
Compare

TCS

3.7
Compare

Infosys

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