Upload Button Icon Add office photos

Filter interviews by

Greenway Health Team Lead Interview Questions and Answers

Updated 11 Jul 2023

Greenway Health Team Lead Interview Experiences

1 interview found

Team Lead Interview Questions & Answers

user image Anonymous

posted on 11 Jul 2023

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

I applied via Referral and was interviewed before Jul 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 - HR 

(1 Question)

  • Q1. Skills and last take home and experince
Round 3 - Aptitude Test 

Its was more of quantitave and logic questions

Round 4 - One-on-one 

(1 Question)

  • Q1. Regarding my previous work and my knowledge check on subject

Interview Preparation Tips

Interview preparation tips for other job seekers - RCM Knowlege is must

Interview questions from similar companies

Round 1 - One-on-one 

(1 Question)

  • Q1. What is yours short term and long-term goals 🤔

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest and be patience will giving interview
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Referral and was interviewed in Jun 2023. There were 3 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 - Aptitude Test 

Test contains 100 questions

Round 3 - Technical 

(1 Question)

  • Q1. 1. Self intro 2. About project 3.ask me to write a palindrome or not 4. He asked me to write a pyramid pattern program 5. One logical question

Interview Preparation Tips

Topics to prepare for Infor Global Solution Associate interview:
  • Prepare topics on your resume

I applied via Referral and was interviewed before Feb 2021. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Mcq based on aptitude and code ouputs in sql,java
Round 2 - One-on-one 

(1 Question)

  • Q1. Basci techinal questions on java and oops concepts and sql
Round 3 - Group Discussion 

Group discussion on the given topic

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through the oops concepts and core java questions and some sql questions

I applied via Campus Placement and was interviewed before Nov 2021. There were 3 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 - Aptitude Test 

There are 30 basic aptitude question in 30 minutes

Round 3 - Coding Test 

3 coding question 2 were easy and 1 was of medium level

Interview Preparation Tips

Interview preparation tips for other job seekers - i was not selected in HR round . they select only two girls out 15 students

I applied via Recruitment Consultant and was interviewed in May 2019. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What is your day to day work?
  • Q2. What new you have to offer the organization?
  • Q3. The most recent issues that you faced in the organization?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be true to yourself and the interviewer, he/she doesn't want you to be full of all technical skills. He/she wants you to be atleast good at the things mentioned in your resume. Showcase that you're ready to switch to any language even if it is uncomfortable for you

I applied via Company Website and was interviewed before Jun 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. If fresher is attending the interview then mostly they'll ask questions from resume What are generics, UML diagram for the proper medicine suggestions based on the patient allergies to a particular drug ...

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well with the contents of resume,
First round: versant test
Second round: Technical Interview 1
Third round: Technical Interview 2

Feedback of best of the 2 technical interviews will be considered.

IF selected will receive a call from HR

I applied via Naukri.com and was interviewed before Jun 2020. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Basic oop
  • Q2. Previous projects and walktrough of one of the project, if any
  • Q3. Basic English test on a computer

Interview Preparation Tips

Interview preparation tips for other job seekers - The first step of the interview is the basic communication skills, which is taken on computer, try to listen carefully, most of the questions are only about what you have comprehend from the automated voice when played over.

OOP is very basic, they may ask some real life examples.

If you have worked previously, they may ask you about one of your projects. What technologies have you used ans why.

I applied via Campus Placement and was interviewed before Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. It was mostly puzzles.
  • Q2. One algo question invoving recursive function .

Interview Preparation Tips

Interview preparation tips for other job seekers - For freshers - prepare puzzles and basic computer science fundamentals

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

First there was a preplacement talk of company and interview process. Soon online test was conducted around 10 AM in consisting of MCQs, and coding question. Platform was smooth enough.

  • Q1. 

    Find the Longest Palindromic Substring

    Given a string ‘S’ composed of lowercase English letters, your task is to identify the longest palindromic substring within ‘S’.

    If there are multiple longest palin...

  • Ans. 

    Find the longest palindromic substring in a given string, returning the rightmost one if multiple substrings are of the same length.

    • Iterate through each character in the string and expand around it to check for palindromes

    • Keep track of the longest palindromic substring found so far

    • Return the rightmost longest palindromic substring

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 45 Minutes
Round difficulty - Medium

The day after online test is done , Technical round was conducted at 9AM . Interview went well without distractions though it was online.

  • Q1. 

    Merge Sort Problem Statement

    You are given a sequence of numbers, ARR. Your task is to return a sorted sequence of ARR in non-descending order using the Merge Sort algorithm.

    Explanation:

    The Merge Sort...

  • Ans. 

    Implement Merge Sort algorithm to sort a sequence of numbers in non-descending order.

    • Divide the input array into two halves recursively until each array has only one element.

    • Merge the sorted halves to produce a completely sorted array.

    • Time complexity of Merge Sort is O(n log n).

    • Example: Input: [3, 1, 4, 1, 5], Output: [1, 1, 3, 4, 5]

  • Answered by AI
  • Q2. Given three tables and their attributes, how would you find the names of employees whose balance is less than 200?
  • Ans. 

    Join tables on employee ID, filter by balance less than 200, select employee names.

    • Join tables on employee ID attribute

    • Filter rows where balance is less than 200

    • Select employee names from the result

  • Answered by AI
Round 3 - Video Call 

Round duration - 45 Minutes
Round difficulty - Medium

Round 4 - HR 

Round duration - 35 Minutes
Round difficulty - Medium

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Associate Software Engineer in ChennaiEligibility criteriaAbove 8 CGPAAthenahealth interview preparation:Topics to prepare for the interview - Data Structures and Algorithms Java, DBMS, Operating Systems, Computer Networks, OOPSTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : First of all make sure you are strong in programming languages (OOPS Java and C) .
Tip 2 : It is very important to have good command on core subjects of Operating systems ,DBMS and Computer Networks. 
Tip 3 : After having grip on mentioned above, move on to Data Structures and Algorithms which plays a vital role to be placed in 
any product based company.
Tip 4: No exam/interviewer goes untouched on topics of Database and SQL. Be confident enough to write queries on being 
asked.
Tip 5 : Do not forget to assess yourself. Mock interviews would work, but self assessment is necessary. You can switch on your 
camera and know the way you are performing and auto correct yourself .Am sure most of you will find it worthy.
Tip 6 : After being prepared , it is very common for any student/person to feel nervous on the day of interview , but don't worry 
be good at yourself and interviewer would definitely make u feel comfortable.

Application resume tips for other job seekers

Tip 1 : Spend time on preparing your resume. Do not give false statements.
Tip 2 : You must be prepared enough to answer every point mentioned in the resume.
Tip 3 : Highlight your areas of strengths where you wanted to be questioned.
Tip 4 : Make sure you have good projects in your hand.
Tip 5 : Good presentation of content is very much important.

Final outcome of the interviewSelected

Skills evaluated in this interview

Greenway Health Interview FAQs

How many rounds are there in Greenway Health Team Lead interview?
Greenway Health interview process usually has 4 rounds. The most common rounds in the Greenway Health interview process are Resume Shortlist, HR and Aptitude Test.

Tell us how to improve this page.

Greenway Health Team Lead Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Oracle Cerner Interview Questions
3.7
 • 157 Interviews
GE Healthcare Interview Questions
4.0
 • 72 Interviews
eClinicalWorks Interview Questions
3.8
 • 68 Interviews
kipi.ai Interview Questions
4.2
 • 57 Interviews
View all
Greenway Health Team Lead Salary
based on 6 salaries
₹8.2 L/yr - ₹12 L/yr
18% more than the average Team Lead Salary in India
View more details

Greenway Health Team Lead Reviews and Ratings

based on 3 reviews

1.9/5

Rating in categories

1.0

Skill development

2.3

Work-life balance

2.3

Salary

1.0

Job security

1.0

Company culture

1.6

Promotions

1.0

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