Upload Button Icon Add office photos

Filter interviews by

Greenway Health Data Engineer Interview Questions and Answers

Updated 21 Aug 2023

Greenway Health Data Engineer Interview Experiences

1 interview found

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 21 Aug 2023

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 in Jul 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Coding Test 

One online coding test comprises of easy to medium leetcode questions

Round 3 - Technical 

(1 Question)

  • Q1. Technical round around technology,tools , cloud and skills mentioned on resume
Round 4 - HR 

(1 Question)

  • Q1. Salary negotiation and basic questions, culture fit.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and know your resume.

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Senior Engineer from the team which is hiring you and an HR will join and you are given array, string and hashmap leetcode easy question and then some dbms queries to write. Once you solve that, engineer will ask tech related questions from your resume to see your understanding about those tech.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your resume. You should know everything about your resume
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. HashCode and equals method difference
  • Q2. Project discussion
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal

Round 1 - Technical 

(2 Questions)

  • Q1. Technical questions on node js
  • Q2. Coding round which had 2 questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. Internal working of hashmap
  • Q2. What are collections
  • Q3. What are design Patterns explain singleton design pattern
  • Q4. What annotations did you use in spring boot. how @transaction annotation works
Round 2 - Behavioral 

(2 Questions)

  • Q1. Asked 2 puzzles
  • Q2. What is vertical scaling and horizontal scaling
Round 3 - HR 

(1 Question)

  • Q1. Salary Discussion
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
-

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

Round 1 - Technical 

(5 Questions)

  • Q1. Explain OOPS concept and how you apply it in your implementation
  • Ans. 

    OOPS is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • OOPS focuses on the concept of classes and objects

    • Encapsulation: bundling data and methods that operate on the data within a single unit

    • Inheritance: allows a class to inherit properties and behavior from another class

    • Polymorphism: ability to present the same interface for diffe...

  • Answered by AI
  • Q2. Difference between Comparable and Comparator. Difference between Abstract Class and Interface
  • Ans. 

    Comparable is an interface used for natural ordering, Comparator is an interface used for custom ordering. Abstract class can have method implementations, Interface cannot.

    • Comparable interface is used to define the natural ordering of objects. Example: String class implements Comparable interface for natural ordering based on alphabetical order.

    • Comparator interface is used to define custom ordering of objects. Example:...

  • Answered by AI
  • Q3. Given a string. Find the number of occurrences of each character
  • Ans. 

    Count occurrences of each character in a given string

    • Create an array to store the count of each character

    • Iterate through the string and increment the count of each character in the array

    • Return the array with counts for each character

  • Answered by AI
  • Q4. Given an array. Remove the number of duplicates
  • Ans. 

    Remove duplicates from an array of strings

    • Iterate through the array and store each element in a set to keep track of unique values

    • Create a new array with the unique values from the set

  • Answered by AI
  • Q5. Given a student object having name and grade data variables. Sort the object on the basis of highest grade.

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Container with most water
  • Ans. 

    The container with most water problem involves finding the maximum area that can be formed between two vertical lines by selecting two points on a line.

    • Start with two pointers at the beginning and end of the array.

    • Calculate the area between the two pointers using the formula min(height[left], height[right]) * (right - left).

    • Move the pointer with the smaller height towards the center to potentially increase the area.

    • Rep

  • Answered by AI
  • Q2. Maximum subarray with 0 sum
  • Ans. 

    Find the maximum subarray with a sum of 0 in an array.

    • Iterate through the array and keep track of the running sum.

    • Store the running sum in a hashmap along with the index.

    • If the running sum is seen again, the subarray between the two occurrences has a sum of 0.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Mar 2022. There were 2 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Technical related to your skill
  • Q2. 2 rounds of technical interview
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Jul 2023. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(5 Questions)

  • Q1. What is the iterator, generator in python. Write an example of it. What is .pyc file, when is it generate, generate and show it.
  • Ans. 

    Iterator and generator are used in Python to iterate over a sequence of elements. .pyc files are compiled Python files.

    • Iterator in Python is an object that enables a programmer to traverse a container, like a list.

    • Generator in Python is a function that returns an iterator. It generates values using the yield keyword.

    • Example of iterator: for num in range(5): print(num)

    • Example of generator: def square_numbers(n): for i i...

  • Answered by AI
  • Q2. Coding Questions: 1) Reversing a number eg:1234 to 4321 2) Perform sorting in list using any sort algorithm 3) list1, list2 - both are mapped to each other, based on the traget value in list1, return th...
  • Q3. Technical questions : OS module, .pyc file, git commands,
  • Q4. What is bug life cycle? which project management methodolgy are you following in your current project.
  • Ans. 

    Bug life cycle is the process of identifying, reporting, fixing, retesting, and closing bugs in a software project.

    • Bug is identified by a tester during testing phase

    • Bug is reported to the development team

    • Development team fixes the bug

    • Tester retests the bug to ensure it is fixed

    • Bug is closed once confirmed fixed

  • Answered by AI
  • Q5. Questions on OOPS . What is polymorphism, write an example for that . Why do we use OOP's

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up on python basics as the role was for Python developer

Skills evaluated in this interview

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

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

Round 1 - Technical 

(4 Questions)

  • Q1. Binary search Merg sorting algorithm Minimum n maximum number in an array list Core java question Oops tricky code snippets Architecture questions about restful and Microservices
  • Q2. Deep copy and shallow copy Interviewer test your problem solving attitude and response not the perfect output
  • Q3. Array in descending order code
  • Ans. 

    Sort an array of strings in descending order

    • Use the sort() method with a custom compare function to sort the array in descending order

    • Example: ['apple', 'banana', 'cherry'].sort((a, b) => b.localeCompare(a)) will result in ['cherry', 'banana', 'apple']

  • Answered by AI
  • Q4. Comparator and comparable interface

Greenway Health Interview FAQs

How many rounds are there in Greenway Health Data Engineer interview?
Greenway Health interview process usually has 4 rounds. The most common rounds in the Greenway Health interview process are HR, Resume Shortlist and Coding Test.
How to prepare for Greenway Health 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 Greenway Health. The most common topics and skills that interviewers at Greenway Health expect are Data Mining, RDBMS, Architecture, Automation Testing and Coding.

Tell us how to improve this page.

Greenway Health Data Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Greenway Health Data Engineer Salary
based on 12 salaries
₹21.6 L/yr - ₹32.5 L/yr
144% more than the average Data Engineer Salary in India
View more details

Greenway Health Data Engineer Reviews and Ratings

based on 3 reviews

4.1/5

Rating in categories

4.5

Skill development

4.1

Work-life balance

3.1

Salary

3.2

Job security

4.4

Company culture

2.2

Promotions

3.7

Work satisfaction

Explore 3 Reviews and Ratings
Software Engineer
92 salaries
unlock blur

₹5 L/yr - ₹18.3 L/yr

Associate Software Engineer
42 salaries
unlock blur

₹5.9 L/yr - ₹8 L/yr

Revenue Analyst
32 salaries
unlock blur

₹4.5 L/yr - ₹6.2 L/yr

Senior Analyst
32 salaries
unlock blur

₹5.2 L/yr - ₹7.5 L/yr

Senior Software Engineer
31 salaries
unlock blur

₹16 L/yr - ₹27 L/yr

Explore more salaries
Compare Greenway Health with

Oracle Cerner

3.7
Compare

Veradigm

4.0
Compare

Athenahealth Technology

4.2
Compare

McKesson

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