Upload Button Icon Add office photos
Engaged Employer

i

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

Optum Global Solutions Verified Tick

Compare button icon Compare button icon Compare

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Optum Global Solutions Lead Data Engineer Interview Questions and Answers

Updated 4 Feb 2023

Optum Global Solutions Lead Data Engineer Interview Experiences

1 interview found

Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Jan 2023. 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. What is Spark configuration for loading 1 TB data splited into 128MB chunks
  • Ans. 

    Set executor memory to 8GB and executor cores to 5 for optimal performance.

    • Set spark.executor.memory to 8g

    • Set spark.executor.cores to 5

    • Set spark.default.parallelism to 8000

    • Use Hadoop InputFormat to read data in 128MB chunks

  • Answered by AI
  • Q2. Windowing function and use case to solve it.
  • Ans. 

    Windowing functions are used to perform calculations on a subset of data within a larger dataset.

    • Windowing functions are used to calculate running totals, moving averages, and rank functions.

    • They are commonly used in time series analysis and financial analysis.

    • Examples of windowing functions include ROW_NUMBER(), RANK(), DENSE_RANK(), and NTILE().

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Nearly 8 coding excercise was given in a 1 hour process.

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Technical 

(3 Questions)

  • Q1. SQL Question on window functions to find the highest sale amount per day of the stores
  • Q2. Build an ETL Pipeline to read json files which are dropping at irregular times into storage. So how do you transform and match the schema etc.,
  • Q3. Write a pyspark code to join two tables and explain broadcastjoin() & what it does?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Given a DataFrame df with columns 'A', 'B','C' how would you group the data by the values in column 'A' and calculate the mean of column 'B' for each group, while also summing the values in column 'C' ?
  • Ans. 

    Group data by column 'A', calculate mean of column 'B' and sum values in column 'C' for each group.

    • Use groupby() function in pandas to group data by column 'A'

    • Apply mean() function on column 'B' and sum() function on column 'C' for each group

    • Example: df.groupby('A').agg({'B':'mean', 'C':'sum'})

  • Answered by AI
  • Q2. Explain the difference deepcopy() and copy() methods in Python's copy module. Provide a scenario where you would use deepcopy() over copy().
  • Ans. 

    deepcopy() creates a new object with completely independent copies of nested objects, while copy() creates a shallow copy.

    • deepcopy() creates a new object and recursively copies all nested objects, while copy() creates a shallow copy of the top-level object only.

    • Use deepcopy() when you need to create a deep copy of an object with nested structures, to avoid any references to the original object.

    • Use copy() when you only ...

  • Answered by AI
  • Q3. Discuss the concept of Python decorators and provide an example of how you would use decorators to measure the execution time of a function.
  • Ans. 

    Python decorators are functions that modify the behavior of other functions. They are commonly used for adding functionality to existing functions without modifying their code.

    • Decorators are defined using the @ symbol followed by the decorator function name.

    • They can be used to measure the execution time of a function by wrapping the function with a timer decorator.

    • Example: def timer(func): def wrapper(*args, **kwargs...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I would like you to approach the interview with enthusiasm, demonstrating passion and eagerness in your interview aligns with their mission of driving innovation and positive change.

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Coding round followed by spark and aws questions
  • Q2. Given a string containing alphanumeric characters how could you write a function to output a repeated characters if any number is present before the character in a string? Input: as2d3c[x]4b Output: asddcc...
  • Ans. 

    The function should output repeated characters based on the numbers present before each character in the input string.

    • Iterate through the input string character by character.

    • If a number is encountered, store it as the repeat count for the next character.

    • If a character is encountered, repeat it based on the stored count and append to the output string.

    • Handle special characters like brackets separately.

    • Example: Input 'as

  • Answered by AI
  • Q3. Write a program for vending machine actions using oops
  • Ans. 

    A program for vending machine actions using object-oriented programming principles.

    • Create a class for VendingMachine with attributes like items, prices, and quantities

    • Implement methods for adding items, selecting items, and returning change

    • Use encapsulation to protect data and ensure proper functionality

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Questions related to kafka, spark, sql and aws cloud
Round 3 - HR 

(1 Question)

  • Q1. Behavioural questions, package and joining date related questions

Skills evaluated in this interview

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 Jun 2024. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Questions related to the current and past projects.
  • Q2. Aws related questions.
  • Q3. Data warehousing basics
Round 2 - Technical 

(2 Questions)

  • Q1. Explain about the roles and responsibilities.
  • Q2. Discussion about the role in Genpact.
Round 3 - HR 

(2 Questions)

  • Q1. Asked about expectated salary
  • Q2. Why are you switching

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare about the points given in your resume and the work you have done.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How you will find that some user SQL running slow without discussing with user?
  • Q2. How you will patch specific db components to reduce downtime?
  • Ans. 

    To patch specific db components to reduce downtime, follow these steps:

    • Identify the specific components that need to be patched

    • Plan the patching process during a scheduled maintenance window

    • Backup the database before applying patches

    • Apply patches to the specific components one by one

    • Test the patched components to ensure they are functioning correctly

    • Monitor the database for any issues post-patching

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Why you have so many hopping in your resume?
  • Q2. How you will rate yourself as an dba?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared technically.
Be loyal in interview , if you don't know just tell
Try to be solution oriented person
Give genuine real time faced issues
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Architecture of sql
  • Ans. 

    SQL architecture refers to the structure and components of a SQL database system.

    • SQL architecture includes components like storage engine, query processor, and buffer manager.

    • The storage engine manages data storage and retrieval, while the query processor processes SQL queries.

    • The buffer manager handles caching and memory management to optimize performance.

    • Examples of SQL architectures include MySQL, Oracle, and SQL Se

  • Answered by AI
  • Q2. Recovery models

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - HR 

(2 Questions)

  • Q1. Self about my fis experience
  • Q2. Tell about my contribution

Interview Preparation Tips

Interview preparation tips for other job seekers - No need
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is the role of Oracle DBA
  • Ans. 

    The role of an Oracle DBA is to manage and maintain Oracle databases to ensure they are secure, efficient, and reliable.

    • Installing and upgrading Oracle software

    • Configuring and monitoring database performance

    • Backup and recovery of data

    • Troubleshooting and resolving database issues

    • Implementing security measures to protect data

    • Managing users and permissions

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Sql questions based on fundamental

Optum Global Solutions Interview FAQs

How many rounds are there in Optum Global Solutions Lead Data Engineer interview?
Optum Global Solutions interview process usually has 2 rounds. The most common rounds in the Optum Global Solutions interview process are Resume Shortlist and Technical.
What are the top questions asked in Optum Global Solutions Lead Data Engineer interview?

Some of the top questions asked at the Optum Global Solutions Lead Data Engineer interview -

  1. What is Spark configuration for loading 1 TB data splited into 128MB chu...read more
  2. Windowing function and use case to solve ...read more

Tell us how to improve this page.

Optum Global Solutions Lead Data Engineer Interview Process

based on 1 interview

Interview experience

2
  
Poor
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
View all
Optum Global Solutions Lead Data Engineer Salary
based on 19 salaries
₹20.1 L/yr - ₹45 L/yr
14% more than the average Lead Data Engineer Salary in India
View more details

Optum Global Solutions Lead Data Engineer Reviews and Ratings

based on 6 reviews

3.3/5

Rating in categories

3.0

Skill development

4.6

Work-life balance

3.1

Salary

3.1

Job security

3.4

Company culture

2.6

Promotions

3.0

Work satisfaction

Explore 6 Reviews and Ratings
Claims Associate
4.3k salaries
unlock blur

₹1.6 L/yr - ₹6 L/yr

Senior Software Engineer
2.8k salaries
unlock blur

₹9.7 L/yr - ₹32 L/yr

Software Engineer
2.6k salaries
unlock blur

₹6.2 L/yr - ₹22 L/yr

Medical Coder
1.2k salaries
unlock blur

₹1.5 L/yr - ₹8 L/yr

Senior Claims Associate
1.2k salaries
unlock blur

₹2.1 L/yr - ₹5.8 L/yr

Explore more salaries
Compare Optum Global Solutions with

Cognizant

3.8
Compare

Accenture

3.8
Compare

IBM

4.0
Compare

TCS

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