Upload Button Icon Add office photos

Filter interviews by

Greenway Health Interview Questions, Process, and Tips

Updated 16 Oct 2024

Top Greenway Health Interview Questions and Answers

View all 6 questions

Greenway Health Interview Experiences

Popular Designations

27 interviews found

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

Interview was conducted using CCAT where questions are based on logical thinking

Round 2 - Technical 

(2 Questions)

  • Q1. What is oops and explain types
  • Ans. 

    OOPs stands for Object-Oriented Programming. There are four main types: Inheritance, Encapsulation, Abstraction, and Polymorphism.

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

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Abstraction: Hiding the complex implementation details and showing only the necessary features of an object.

    • Polymorphism: All...

  • Answered by AI
  • Q2. Angular JS and its applications
  • Ans. 

    AngularJS is a JavaScript framework used for building dynamic web applications.

    • AngularJS allows for the creation of single-page applications.

    • It provides data binding and dependency injection to simplify development.

    • Directives in AngularJS extend HTML with new attributes and elements.

    • Services in AngularJS are singleton objects that can be used across the application.

    • Examples of AngularJS applications include Gmail, YouT

  • Answered by AI

Skills evaluated in this interview

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (1)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Basics questions about you
Round 2 - Aptitude Test 

Aptitude, reasoning, Logical

Round 3 - One-on-one 

(1 Question)

  • Q1. .Net Questions,Angular,Previous Companies

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (1)
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 Mar 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic logical reasoning and verbal understanding with quick witted calculations involved.

Round 2 - Technical 

(1 Question)

  • Q1. OOPs Boxing vs Unboxing Find 2nd highest salary Joins Lifecycle hooks Write the code written in constructor while calling an API with the service.
  • Ans. 

    The question covers topics like OOPs, boxing vs unboxing, finding the 2nd highest salary, joins, lifecycle hooks, and calling an API with a service in the constructor.

    • Boxing vs unboxing: Boxing is the process of converting a value type to a reference type, while unboxing is the opposite. Example: int i = 10; object obj = i; // boxing int j = (int)obj; // unboxing

    • Finding 2nd highest salary: Use SQL query like 'SELECT MA...

  • Answered by AI

Skills evaluated in this interview

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (1)

Business Analyst Interview Questions & Answers

user image Tejeshwar pandey

posted on 13 Oct 2024

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

(1 Question)

  • Q1. ABOUT YOURSELF?

Business Analyst Interview Questions asked at other Companies

Q1. You have 10 boxes of balls (each ball weighing exactly10 gm) with one box with defective balls (each one of the defective balls weigh 9 gm). You are given an electronic weighing machine and only one chance at it. How will you find out which... read more
View answer (9)

Greenway Health interview questions for popular designations

 Associate Software Engineer

 (5)

 Software Engineer

 (4)

 Product Owner

 (3)

 Software Development Engineer Test

 (2)

 Assistant System Engineer

 (1)

 Business Analyst

 (1)

 Cloud Data Architect

 (1)

 Data Engineer

 (1)

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Jan 2024.

Round 1 - Aptitude Test 

Even that company have no clue why are they conducting that aptitude round

Round 2 - Technical 

(1 Question)

  • Q1. Opps concepts,SQL
Round 3 - HR 

(1 Question)

  • Q1. General questions ,salary discussion

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (1)
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Please describe About yourself
  • Ans. 

    I am a dedicated and detail-oriented individual with a passion for technology and problem-solving.

    • Graduated with a degree in Computer Science

    • Experience with programming languages such as Java and Python

    • Strong analytical and problem-solving skills

    • Certified in relevant technologies like Cisco or Microsoft

    • Excellent communication and teamwork abilities

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Avoid this company, terrible management

Assistant System Engineer Interview Questions asked at other Companies

Q1. Constellation Identification Problem Given a matrix named UNIVERSE with 3 rows and 'N' columns, filled with characters {#, *, .}, where: '*' represents stars. '.' represents empty space. '#' represents a separator between galaxies. Your t... read more
View answer (3)

Jobs at Greenway Health

View all

Software Engineer Interview Questions & Answers

user image Khushi Mishra

posted on 20 Oct 2023

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 

Average questions not so tough but time span was less

Round 3 - Technical 

(2 Questions)

  • Q1. Average questions were asked
  • Q2. Difference between post and get apk
  • Ans. 

    POST is used to send data to a server to create/update a resource, while GET is used to request data from a server.

    • POST is used to create or update a resource on the server

    • GET is used to request data from the server

    • POST requests are not cached by the browser

    • GET requests can be cached by the browser

    • POST requests have a limit on the amount of data that can be sent

    • GET requests have a limit on the length of the URL

  • Answered by AI

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (183)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

Online Aptitude Test of 60 minutes duration which could indeed be difficult to crack!

Round 3 - One-on-one 

(1 Question)

  • Q1. Second is an one-on-one round where for me, questions were mostly related to my previous work experiences and real world scenarios based problems.
Round 4 - Technical 

(1 Question)

  • Q1. Last and final round was a technical round with the development manager. The questions again were mostly related to my past work and then few coding challenges, process related questions and behavioral que...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident! Be clear with your thoughts and answers. Don't rush or stress out, just take few deep beaths and be cool & composed. Answer the questions to the best of your capabilities. Make sure you know what you have put in your resume.

Software Development Engineer Test Interview Questions asked at other Companies

Q1. Tell me about yourself What is Software What is Framework What are the characteristics of Software What are different SDLC models available? What is Debugging? Difference between Validation and Verification? What is Software Scope? What are... read more
View answer (1)

Manager Interview Questions & Answers

user image Anonymous

posted on 16 Aug 2023

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - Aptitude Test 

Test requires you to demonstrate good analytical and reasoning skills. Partially mathematical and somewhat language based test.

Round 3 - HR 

(1 Question)

  • Q1. Tell me about your experience.
Round 4 - One-on-one 

(2 Questions)

  • Q1. Tell me about your work experience.
  • Q2. What was your responsibility

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and clear in your communiction.

Manager Interview Questions asked at other Companies

Q1. There is a chairman of a conglomerate. He has been on the post for 10 years, and is extremely dominating. He treats the various business heads like children, not letting them take any major decision. While the chairman has negatives, he bel... read more
View answer (2)

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:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
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.

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a Coin Game You are playing a coin game with your friend Ninjax. There are N coins placed in a straight line. Here are the rules of the game: 1. Each coin has a value associated with it. 2. The game involves two players... read more
View answer (1)

Greenway Health Interview FAQs

How many rounds are there in Greenway Health interview?
Greenway Health interview process usually has 3-4 rounds. The most common rounds in the Greenway Health interview process are Aptitude Test, Resume Shortlist and One-on-one Round.
How to prepare for Greenway Health 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 SQL, Coding, Javascript, Python and Front End.
What are the top questions asked in Greenway Health interview?

Some of the top questions asked at the Greenway Health interview -

  1. How do you break down your features into user stories and how do you prioritise...read more
  2. OOPs Boxing vs Unboxing Find 2nd highest salary Joins Lifecycle hooks Write the...read more
  3. 1. Difference between final, finally and finali...read more
How long is the Greenway Health interview process?

The duration of Greenway Health interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Greenway Health Interview Process

based on 22 interviews

Interview experience

3.9
  
Good
View more

Interview Questions from Similar Companies

Oracle Cerner Interview Questions
3.7
 • 157 Interviews
GE Healthcare Interview Questions
4.1
 • 72 Interviews
eClinicalWorks Interview Questions
3.8
 • 66 Interviews
Veradigm Interview Questions
4.0
 • 41 Interviews
McKesson Interview Questions
4.5
 • 1 Interview
View all

Greenway Health Reviews and Ratings

based on 168 reviews

3.2/5

Rating in categories

2.8

Skill development

3.2

Work-life balance

3.3

Salary

2.4

Job security

3.0

Company culture

2.4

Promotions

2.9

Work satisfaction

Explore 168 Reviews and Ratings
Associate Client Care Advisor

Kolkata,

Mumbai

+5

2-5 Yrs

Not Disclosed

Explore more jobs
Software Engineer
92 salaries
unlock blur

₹5 L/yr - ₹20 L/yr

Associate Software Engineer
38 salaries
unlock blur

₹5.9 L/yr - ₹8 L/yr

Senior Analyst
32 salaries
unlock blur

₹5.2 L/yr - ₹7.5 L/yr

Senior Software Engineer
29 salaries
unlock blur

₹16 L/yr - ₹27 L/yr

Revenue Analyst
27 salaries
unlock blur

₹5 L/yr - ₹6.2 L/yr

Explore more salaries
Compare Greenway Health with

Oracle Cerner

3.7
Compare

Veradigm

4.0
Compare

Athenahealth Technology

4.2
Compare

McKesson

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